Problem maximum
User kangzhe
Submission Time 2024-07-11 01:30:23
Score 0
Max Time N/A
Max Memory N/A

Compile Error

maximum.cpp: In function ‘int main()’:
maximum.cpp:4:9: error: expected unqualified-id before ‘int’
4 | int a, int b;
| ^~~
maximum.cpp:5:2: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
5 | cin >> a >> b;
| ^~~
| 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:5:14: error: ‘b’ was not declared in this scope
5 | cin >> a >> b;
| ^
maximum.cpp:7:3: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
7 | cout << a;
| ^~~~
| std::cout
In file included from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:75,
from maxi