Run id: 2649
Main.cc:9:9: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
cout<"yes"endl;
^
Main.cc:12:9: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
cout<"no"endl;
^
Main.cc: In function 'int main()':
Main.cc:4:5: error: expected unqualified-id before '=' token
int=a;
^
Main.cc:5:5: error: expected unqualified-id before '=' token
int=x;
^
Main.cc:6:5: error: expected unqualified-id before '=' token
int=y;
^
Main.cc:7:7: error: 'a' was not declared in this scope
cin>>a>>x>>y;
^
Main.cc:7:10: error: 'x' was not declared in this scope
cin>>a>>x>>y;
^
Main.cc:7:13: error: 'y' was not declared in this scope
cin>>a>>x>>y;
^
Main.cc:9:14: error: expected ';' before 'endl'
cout<"yes"endl;
^
Main.cc:12:13: error: expected ';' before 'endl'
cout<<"no"endl;
^