Main.cc: In function 'int main()': Main.cc:9:14: warning: right operand of comma operator has no effect [-Wunused-value] cin>>a,b,c; ^ Main.cc:9:15: warning: right operand of comma operator has no effect [-Wunused-value] cin>>a,b,c; ^ Main.cc:10:14: warning: suggest parentheses around '&&' within '||' [-Wparentheses] if(a%4==0&&a%100!=0||a%400==0) suM++ ^ Main.cc:11:5: error: expected ';' before 'if' if(b%4==0&&b%100!=0||b%400==0) suM++ ^