Problem sum
User NoynYT
Submission Time 2024-12-02 11:16:28
Score 0
Max Time N/A
Max Memory N/A

Compile Error

sum.cpp:1:10: error: #include expects "FILENAME" or <FILENAME>
1 | #include iostream
| ^~~~~~~~
sum.cpp: In function ‘int main()’:
sum.cpp:6:5: error: ‘ios’ has not been declared
6 | ios::sync_with_stdio(false);
| ^~~
sum.cpp:7:5: error: ‘cin’ was not declared in this scope
7 | cin.tie(nullptr);
| ^~~
sum.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | #include iostream
sum.cpp:18:2: error: ‘cout’ was not declared in this scope
18 | cout << xx << " " << yy;
| ^~~~
sum.cpp:18:2: note: ‘std::cout’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?