Run id: 130337

Main.cc:2:17: error: 'st' is not a namespace-name
 using namespace st;
                 ^
Main.cc:2:19: error: expected namespace-name before ';' token
 using namespace st;
                   ^
Main.cc: In function 'int main()':
Main.cc:6:1: error: 'cin' was not declared in this scope
 cin>>n;
 ^
Main.cc:6:1: note: suggested alternative:
In file included from Main.cc:1:0:
/usr/include/c++/5/iostream:60:18: note:   'std::cin'
   extern istream cin;  /// Linked to standard input
                  ^
Main.cc:15:1: error: 'cout' was not declared in this scope
 cout << SUM << endl;}}
 ^
Main.cc:15:1: note: suggested alternative:
In file included from Main.cc:1:0:
/usr/include/c++/5/iostream:61:18: note:   'std::cout'
   extern ostream cout;  /// Linked to standard output
                  ^
Main.cc:15:16: error: 'endl' was not declared in this scope
 cout << SUM << endl;}}
                ^
Main.cc:15:16: note: suggested alternative:
In file included from /usr/include/c++/5/iostream:39:0,
                 from Main.cc:1:
/usr/include/c++/5/ostream:590:5: note:   'std::endl'
     endl(basic_ostream<_CharT, _Traits>& __os)
     ^