Run id: 132411

Main.cc: In function 'int main()':
Main.cc:3:8: error: expected unqualified-id before '>>' token
     int>>a, b;
        ^
Main.cc:4:12: error: 'cin' was not declared in this scope
     while (cin>>a>>b)}
            ^
Main.cc:4:17: error: 'a' was not declared in this scope
     while (cin>>a>>b)}
                 ^
Main.cc:4:20: error: 'b' was not declared in this scope
     while (cin>>a>>b)}
                    ^
Main.cc:4:22: error: expected primary-expression before '}' token
     while (cin>>a>>b)}
                      ^
Main.cc: At global scope:
Main.cc:5:9: error: 'cout' does not name a type
         cout << a+b <