/in/foo.cc: In function 'int main()':
/in/foo.cc:10:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | for (int i = 0; i < expression.length(); i++) {
| ~~^~~~~~~~~~~~~~~~~~~~~
/in/foo.cc:21:18: error: expected ';' before 'int'
21 | ss2 >> num2;1
| ^
| ;
22 | int result;
| ~~~
/in/foo.cc:21:17: warning: statement has no effect [-Wunused-value]
21 | ss2 >> num2;1
| ^
/in/foo.cc:24:9: error: 'result' was not declared in this scope
24 | result = num1 + num2;
| ^~~~~~
/in/foo.cc:26:9: error: 'result' was not declared in this scope
26 | result = num1 - num2;
| ^~~~~~
/in/foo.cc:28:13: error: 'result' was not declared in this scope
28 | cout << result << endl;
| ^~~~~~