Problem addition
User NoobDev22
Submission Time 2024-02-16 15:03:27
Score 0
Max Time N/A
Max Memory N/A

Compile Error

cc1plus: error: ‘::main’ must return ‘int’
addition.cpp: In function ‘int main()’:
addition.cpp:6:12: error: expected ‘;’ before ‘:’ token
6 | cin.tie(0):ios:base::sync_with_stdio(0);
| ^
| ;
addition.cpp:11:2: error: expected ‘,’ or ‘;’ before ‘cout’
11 | cout << x << endl;
| ^~~~
addition.cpp:12:10: error: expected ‘;’ before ‘}’ token
12 | return 0
| ^
| ;
13 | }
| ~