| Problem | addition |
|---|---|
| User | jaydenlol |
| Submission Time | 2026-06-22 15:34:52 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
addition.cpp: In function ‘int main()’:
addition.cpp:5:2: error: ‘longlong’ was not declared in this scope
5 | longlong a;
| ^~~~~~~~
addition.cpp:6:10: error: expected ‘;’ before ‘b’
6 | longlong b;
| ^~
| ;
addition.cpp:7:10: error: expected ‘;’ before ‘sum’
7 | longlong sum = a+b;
| ^~~~
| ;
addition.cpp:8:21: error: ‘sum’ was not declared in this scope
8 | cout << "Sum: " << sum;
| ^~~