Run id: 155894

Main.cc: In function 'int main()':
Main.cc:4:5: error: 'a' was not declared in this scope
  if(a > b and a > c){
     ^
Main.cc:4:9: error: 'b' was not declared in this scope
  if(a > b and a > c){
         ^
Main.cc:4:19: error: 'c' was not declared in this scope
  if(a > b and a > c){
                   ^
Main.cc:10:4: error: expected '}' before 'else'
   }else{
    ^
Main.cc: At global scope:
Main.cc:31:2: error: expected unqualified-id before 'return'
  return 0;
  ^
Main.cc:32:1: error: expected declaration before '}' token
 }
 ^