Problem | addition3 |
---|---|
User | ZachTAD |
Submission Time | 2024-04-01 07:16:14 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
addition3.cpp: In function ‘int main()’:
addition3.cpp:3:12: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
3 | int a, b; cin >> a >> b; cout << a+b;
| ^~~
| std::cin
In file included from addition3.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
addition3.cpp:3:27: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
3 | int a, b; cin >> a >> b; cout << a+b;
| ^~~~
| std::cout
In file included from addition3.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~