Problem maximum
User Debdan01
Submission Time 2025-08-21 15:46:40
Score 0
Max Time N/A
Max Memory N/A

Compile Error

maximum.cpp: In function ‘int main()’:
maximum.cpp:6:10: error: expected ‘;’ before ‘if’
6 | cin>>a,b
| ^
| ;
7 | if (a>b){
| ~~
maximum.cpp:9:2: error: ‘else’ without a previous ‘if’
9 | else if (b>a)
| ^~~~
maximum.cpp:10:11: error: expected ‘;’ before ‘return’
10 | { cout<<b
| ^
| ;
......
36 | return 0;}
| ~~~~~~
maximum.cpp:36:11: error: expected ‘}’ at end of input
36 | return 0;}
| ^
maximum.cpp:4:11: note: to match this ‘{’
4 | int main(){
| ^