Main.cc: In function 'int main()':
Main.cc:10:5: error: expected primary-expression before 'if'
if(n%2==0){
^
Main.cc:13:5: error: 'else' without a previous 'if'
else{
^
Main.cc:8:9: warning: unused variable 'a' [-Wunused-variable]
int a=10000,b=10000,n;
^
Main.cc:8:17: warning: unused variable 'b' [-Wunused-variable]
int a=10000,b=10000,n;
^