Problem addition
User liuenming0526
Submission Time 2024-02-16 15:26:15
Score 0
Max Time N/A
Max Memory N/A

Compile Error

addition.cpp:2:20: error: expected ‘;’ before ‘int32_t’
2 | using namespace std
| ^
| ;
3 | #define int long long.
4 | int32_t main()
| ~~~~~~~
addition.cpp: In function ‘int32_t main()’:
addition.cpp:3:22: error: expected unqualified-id before ‘.’ token
3 | #define int long long.
| ^
addition.cpp:6:2: note: in expansion of macro ‘int’
6 | int a,b;
| ^~~
addition.cpp:7:9: error: ‘a’ was not declared in this scope
7 | cin >> a;
| ^
addition.cpp:8:9: error: ‘b’ was not declared in this scope
8 | cin >> b;
| ^