Run id: 2325

Main.cc:2:7: error: expected nested-name-specifier before 'namespac'
 using namespac estd;
       ^
Main.cc:2:7: error: 'namespac' has not been declared
Main.cc:2:16: error: expected ';' before 'estd'
 using namespac estd;
                ^
Main.cc:2:16: error: 'estd' does not name a type
Main.cc: In function 'int main()':
Main.cc:5:5: error: 'cin' was not declared in this scope
     cin>>n;
     ^
Main.cc:5:5: note: suggested alternative:
In file included from Main.cc:1:0:
/usr/include/c++/4.8.2/iostream:60:18: note:   'std::cin'
   extern istream cin;  /// Linked to standard input
                  ^
Main.cc:12:9: error: 'cout' was not declared in this scope
         cout<a[i];
         ^
Main.cc:12:9: note: suggested alternative:
In file included from Main.cc:1:0:
/usr/include/c++/4.8.2/iostream:61:18: note:   'std::cout'
   extern ostream cout;  /// Linked to standard output
                  ^