Problem maximum
User yay
Submission Time 2025-03-01 09:39:59
Score 0
Max Time N/A
Max Memory N/A

Compile Error

maximum.cpp:2:16: error: expected identifier before ‘;’ token
2 | using namespace;
| ^
maximum.cpp: In function ‘int32_t main()’:
maximum.cpp:18:2: error: ‘ios’ has not been declared
18 | ios::sync_with_stdio(0);
| ^~~
maximum.cpp:19:2: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
19 | cin.tie(0);
| ^~~
| std::cin
In file included from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:75,
from maximum.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
maximum.cpp:22:2: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
22 | cout << max(a,b);
| ^~~~
| std::cout
In file included from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:75,
from maximum.cpp:1:
/u