Run id: 106223

Main.cc: In function 'int main()':
Main.cc:25:2: error: expected primary-expression before '/' token
 */ 
  ^
Main.cc:62:1: error: expected primary-expression before 'int'
 int i,j,n,m;  
 ^
Main.cc:63:11: error: conflicting declaration 'int a [6][6]'
 int a[6][6];  
           ^
Main.cc:10:5: note: previous declaration as 'int a [1000][1000]'
 int a[1000][1000]; 
     ^
Main.cc:64:9: error: 'm' was not declared in this scope
 cin>>n>>m;  
         ^
Main.cc:65:5: error: 'i' was not declared in this scope
 for(i = 1;i <= 5;i++){  
     ^
Main.cc:66:5: error: 'j' was not declared in this scope
 for(j = 1;j <= 5;j++){  
     ^
Main.cc:72:5: error: 'i' was not declared in this scope
 for(i = 1;i <= 5;i++){  
     ^
Main.cc:74:5: error: 'j' was not declared in this scope
 for(j = 2;j <= 5;j++) cout<<" "<