Problem addition
User Xavier
Submission Time 2025-06-16 14:13:57
Score 0
Max Time N/A
Max Memory N/A

Compile Error

addition.cpp:5:12: error: stray ‘#’ in program
5 | int a, b; #shows that these are the inputs
| ^
addition.cpp:2:1: error: ‘suing’ does not name a type
2 | suing namespace std;
| ^~~~~
addition.cpp: In function ‘int main()’:
addition.cpp:5:13: error: ‘shows’ was not declared in this scope
5 | int a, b; #shows that these are the inputs
| ^~~~~
addition.cpp:8:2: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
8 | cout << a + b;
| ^~~~
| std::cout
In file included from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:75,
from addition.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~