foo.cc:14:1: error: ‘suing’ does not name a type
14 | suing namespace std;
| ^~~~~
foo.cc: In function ‘int main()’:
foo.cc:18:9: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
18 | cin>>n;
| ^~~
| std::cin
iostream:62:18: note: ‘std::cin’ declared here
foo.cc:24:9: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
24 | cout<<min<<endl;
| ^~~~
| std::cout
iostream:63:18: note: ‘std::cout’ declared here
foo.cc:24:20: error: ‘endl’ was not declared in this scope; did you mean ‘std::endl’?
24 | cout<<min<<endl;
| ^~~~
| std::endl
In file included from iostream:41:
/nix/gcc-13.2.0/include/c++/13.2.0/ostream:735:5: note: ‘std::endl’ declared here
735 | endl(basic_ostream<_CharT, _Traits>& __os)
| ^~~~