Problem flybot
User ilikeeggs
Submission Time 2024-09-16 14:49:57
Score 0
Max Time N/A
Max Memory N/A

Compile Error

flybot.cpp: In function ‘int main()’:
flybot.cpp:4:10: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
4 | int h,w; cin>>h>>w;
| ^~~
| std::cin
In file included from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:75,
from flybot.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
flybot.cpp:5:1: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
5 | cout << (h*w) - max(h,w);
| ^~~~
| std::cout
In file included from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:75,
from flybot.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~
flybot.cpp:5:17: error: ‘max’ was