foo.cc: In function ‘int main()’:
foo.cc:5:9: error: ‘cin’ was not declared in this scope
5 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^~~
foo.cc:5:14: error: ‘a’ was not declared in this scope
5 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:5:17: error: ‘b’ was not declared in this scope
5 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:5:20: error: ‘c’ was not declared in this scope
5 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:5:23: error: ‘d’ was not declared in this scope
5 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:5:26: error: ‘e’ was not declared in this scope
5 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:5:29: error: ‘f’ was not declared in this scope
5 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:5:32: error: ‘t’ was not declared in this scope
5 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:5:35: error: ‘endl’ was not declared in this scope
5 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^~~~
foo.cc:30:9: error: ‘cout’ was not declared in this scope
30 | cout<<a<<b<<c<<d<<e<<f<<endl;
| ^~~~
foo.cc:31:24: error: expected ‘;’ before ‘}’ token
31 | return 0
| ^
| ;
......
34 | }
| ~