| Problem | typoswap |
|---|---|
| User | supercel980 |
| Submission Time | 2026-02-21 11:26:27 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
typoswap.cpp:1:2: error: invalid preprocessing directive #incldue; did you mean #include?
1 | #incldue <bits/stdc++.h>
| ^~~~~~~
| include
typoswap.cpp: In function ‘int main()’:
typoswap.cpp:4:2: error: ‘string’ was not declared in this scope
4 | string a,b;
| ^~~~~~
typoswap.cpp:1:1: note: ‘std::string’ is defined in header ‘<string>’; did you forget to ‘#include <string>’?
+++ |+#include <string>
1 | #incldue <bits/stdc++.h>
typoswap.cpp:5:2: error: ‘cin’ was not declared in this scope
5 | cin >> a >> b;
| ^~~
typoswap.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | #incldue <bits/stdc++.h>
typoswap.cpp:5:9: error: ‘a’ was not declared in this scope
5 | cin >> a >> b;
| ^
typoswap.cpp:5:14: er