mobile.cpp: In function 'int main()':
mobile.cpp:61:7: error: 'ios' has not been declared
61 | ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
| ^~~
mobile.cpp:61:31: error: 'cin' was not declared in this scope; did you mean 'std::cin'?
61 | ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
| ^~~
| std::cin
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:75,
from mobile.cpp:1:
/usr/include/c++/10/iostream:60:18: note: 'std::cin' declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
mobile.cpp:61:42: error: 'cout' was not declared in this scope; did you mean 'std::cout'?
61 | ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
| ^~~~
| std::cout
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:75,
from mobile.cpp:1:
/usr/include/c++/10/iostream:61:18: note: 'std::cout' declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~