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

Compile Error

snack.cpp: In function ‘int main()’:
snack.cpp:4:3: error: ‘ios_base’ has not been declared
4 | ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
| ^~~~~~~~
snack.cpp:4:33: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
4 | 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:45: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
4 | 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:1