Run id: 137638

Main.cc: In function 'int main()':
Main.cc:11:3: error: 's' was not declared in this scope
   s=0;
   ^
Main.cc:18:16: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
   if (i%400==0 and i%100==0 or i%4==0 and i%100!=0)
                ^
Main.cc:29:3: error: 'n' was not declared in this scope
   n=1;
   ^
Main.cc:33:17: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
    if (i%400==0 and i%100==0 or i%4==0 and i%100!=0)
                 ^
Main.cc:56:5: error: expected '}' before 'else'
     else if (c==2 and d!=b[1])
     ^
Main.cc: At global scope:
Main.cc:60:1: error: expected declaration before '}' token
 }
 ^