| Problem | addition2 |
|---|---|
| User | Sheb |
| Submission Time | 2025-12-05 10:52:51 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
addition2.cpp:3:13: error: expected initializer before ‘long’
3 | #define int long long
| ^~~~
addition2.cpp:6:2: note: in expansion of macro ‘int’
6 | int a, b; cin >> a >> b;
| ^~~
addition2.cpp:6:12: error: ‘cin’ does not name a type; did you mean ‘sin’?
6 | int a, b; cin >> a >> b;
| ^~~
| sin
addition2.cpp:7:2: error: ‘cout’ does not name a type
7 | cout << a + b;
| ^~~~
addition2.cpp:8:2: error: expected unqualified-id before ‘return’
8 | return 0;
| ^~~~~~
addition2.cpp:9:1: error: expected declaration before ‘}’ token
9 | }
| ^