Run id: 107901

Main.cc: In function 'int main()':
Main.cc:10:28: error: expected primary-expression before '||' token
     if(a%4==0 && a%100==0) || (a%400==0);
                            ^
Main.cc:12:28: error: expected primary-expression before '||' token
     if(b%4==0 && b%100==0) || (b%400==0);
                            ^
Main.cc:14:28: error: expected primary-expression before '||' token
     if(c%4==0 && c%100==0) || (c%400==0);
                            ^
Main.cc: At global scope:
Main.cc:19:5: error: expected unqualified-id before 'return'
     return 0;
     ^
Main.cc:20:1: error: expected declaration before '}' token
 }
 ^