运行 ID: 6214

Main.cc: In function ‘int main()’:
Main.cc:4:5: error: ‘inta’ was not declared in this scope
     inta,b;
     ^~~~
Main.cc:4:5: note: suggested alternative: ‘int’
     inta,b;
     ^~~~
     int
Main.cc:4:10: error: ‘b’ was not declared in this scope
     inta,b;
          ^
Main.cc:5:10: error: ‘a’ was not declared in this scope
     cin>>a>>b;
          ^
Main.cc:11:13: error: expected ‘;’ before string constant
         cout"=";
             ^~~
             ;
Main.cc:11:16: warning: statement has no effect [-Wunused-value]
         cout"=";
                ^
Main.cc:12:5: error: expected ‘}’ at end of input
     }
     ^
Main.cc:3:11: note: to match this ‘{’
 int main(){
           ^