| Problem | sum |
|---|---|
| User | pasit |
| Submission Time | 2026-08-06 12:02:22 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
sum.cpp: In function ‘void solve()’:
sum.cpp:7:13: error: expected ‘,’ or ‘;’ before ‘long’
7 | #define int long long
| ^~~~
sum.cpp:12:5: note: in expansion of macro ‘int’
12 | int a = 0, b = 0;
| ^~~
sum.cpp:16:9: error: ‘a’ was not declared in this scope
16 | a+=x;
| ^
sum.cpp:19:9: error: ‘b’ was not declared in this scope
19 | b+=x;
| ^
sum.cpp:21:13: error: ‘a’ was not declared in this scope
21 | cout << a << sp << b;
| ^
sum.cpp:21:24: error: ‘b’ was not declared in this scope
21 | cout << a << sp << b;
| ^
At global scope:
cc1plus: error: ‘::main’ must return ‘int’