Problem addition
User Dylan
Submission Time 2025-06-16 14:16:37
Score 0
Max Time N/A
Max Memory N/A

Compile Error

addition.cpp:1:20: error: expected ‘;’ before ‘int’
1 | using namespace std
| ^
| ;
2 |
3 | int main() {
| ~~~
addition.cpp: In function ‘int main()’:
addition.cpp:6:2: error: ‘cin’ was not declared in this scope
6 | cin >> A >> B;
| ^~~
addition.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | using namespace std
addition.cpp:7:2: error: ‘cout’ was not declared in this scope
7 | cout << A + B;
| ^~~~
addition.cpp:7:2: note: ‘std::cout’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?