Problem addition
User ovuvuevuevueenyetuewuevue
Submission Time 2025-01-25 12:52:29
Score 0
Max Time N/A
Max Memory N/A

Compile Error

addition.cpp: In function ‘int main()’:
addition.cpp:4:2: error: ‘longlong’ was not declared in this scope
4 | longlong a,b;
| ^~~~~~~~
addition.cpp:5:7: error: ‘a’ was not declared in this scope
5 | cin>>a>>b;
| ^
addition.cpp:5:10: error: ‘b’ was not declared in this scope
5 | cin>>a>>b;
| ^
addition.cpp:6:10: error: expected ‘;’ before ‘total’
6 | longlong total = a+b;
| ^~~~~~
| ;
addition.cpp:7:8: error: ‘total’ was not declared in this scope
7 | cout<<total<<endl;
| ^~~~~