Problem typoswap
User monke
Submission Time 2026-02-04 12:33:06
Score 0
Max Time N/A
Max Memory N/A

Compile Error

typoswap.cpp:1:1: error: ‘include’ does not name a type
1 | include <bits/stdc++.h>
| ^~~~~~~
typoswap.cpp: In function ‘int main()’:
typoswap.cpp:4:2: error: ‘str’ was not declared in this scope; did you mean ‘std’?
4 | str a,b;
| ^~~
| std
typoswap.cpp:5:2: error: ‘cin’ was not declared in this scope
5 | cin>>a>>b;
| ^~~
typoswap.cpp:5:7: error: ‘a’ was not declared in this scope
5 | cin>>a>>b;
| ^
typoswap.cpp:5:10: error: ‘b’ was not declared in this scope
5 | cin>>a>>b;
| ^
typoswap.cpp:6:2: error: ‘cout’ was not declared in this scope
6 | cout<<b<<" "<<a;
| ^~~~