Main.cc: In function 'int main()':
Main.cc:4:8: warning: variable 'a' set but not used [-Wunused-but-set-variable]
int i,a,b,c;
^
Main.cc:4:10: warning: variable 'b' set but not used [-Wunused-but-set-variable]
int i,a,b,c;
^
Main.cc:4:12: warning: variable 'c' set but not used [-Wunused-but-set-variable]
int i,a,b,c;
^
Main.cc:10:1: error: expected '}' at end of input
}
^