Problem snack
User SuspiciousAmogus
Submission Time 2024-08-19 10:23:05
Score 0
Max Time N/A
Max Memory N/A

Compile Error

snack.cpp: In function ‘int main()’:
snack.cpp:4:38: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
4 | std::ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
| ^~~
| std::cin
In file included from snack.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
snack.cpp:4:50: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
4 | std::ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
| ^~~~
| std::cout
In file included from snack.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
|