Run id: 5349

Main.cc: In function 'int main()':
Main.cc:4:2: error: 'longlong' was not declared in this scope
  longlong y,n=1;
  ^
Main.cc:4:11: error: expected ';' before 'y'
  longlong y,n=1;
           ^
Main.cc:5:7: error: 'y' was not declared in this scope
  cin>>y;
       ^
Main.cc:6:15: error: expected ';' before 'i'
  for(longlong i=1;i<=y;i++){
               ^
Main.cc:6:19: error: 'i' was not declared in this scope
  for(longlong i=1;i<=y;i++){
                   ^
Main.cc:7:3: error: 'n' was not declared in this scope
   n*=i;}
   ^
Main.cc:8:7: error: 'n' was not declared in this scope
 cout<<n;}
       ^