Problem | addition |
---|---|
User | TJX1111 |
Submission Time | 2023-06-27 15:53:47 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
addition.cpp: In function ‘int main()’:
addition.cpp:4:59: error: expected ‘;’ before ‘int’
4 | ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)
| ^
| ;
5 | int a,b;
| ~~~
addition.cpp:6:7: error: ‘a’ was not declared in this scope
6 | cin>>a>>b;
| ^
addition.cpp:6:10: error: ‘b’ was not declared in this scope
6 | cin>>a>>b;
| ^
addition.cpp:17:10: error: expected ‘;’ before ‘}’ token
17 | return 0
| ^
| ;
18 | }
| ~