Problem | addition |
---|---|
User | CrackingCodes |
Submission Time | 2024-02-16 15:05:50 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
addition.cpp: In function ‘int main()’:
addition.cpp:4:10: error: expected ‘;’ before ‘int’
4 | return 0
| ^
| ;
5 | int longlong
| ~~~
addition.cpp:6:1: error: expected initializer before ‘int’
6 | int a
| ^~~
addition.cpp:8:12: error: expected ‘}’ at end of input
8 | cin << a+b
| ^
addition.cpp:3:11: note: to match this ‘{’
3 | int main(){
| ^