foo.cc: In function ‘int main()’:
foo.cc:10:9: error: ‘ints’ was not declared in this scope; did you mean ‘int’?
10 | ints=1;
| ^~~~
| int
foo.cc:11:13: error: ‘inti’ was not declared in this scope; did you mean ‘int’?
11 | for(inti=1; i<=n; i++) {
| ^~~~
| int
foo.cc:11:21: error: ‘i’ was not declared in this scope
11 | for(inti=1; i<=n; i++) {
| ^
foo.cc:15:13: error: ‘intj’ was not declared in this scope; did you mean ‘int’?
15 | for(intj=1; j<=m; j++) {
| ^~~~
| int
foo.cc:15:21: error: ‘j’ was not declared in this scope
15 | for(intj=1; j<=m; j++) {
| ^
foo.cc:16:21: error: ‘intk’ was not declared in this scope; did you mean ‘int’?
16 | for(intk=s; k<=n; k++) {
| ^~~~
| int
foo.cc:16:26: error: ‘s’ was not declared in this scope
16 | for(intk=s; k<=n; k++) {
| ^
foo.cc:16:29: error: ‘k’ was not declared in this scope
16 | for(intk=s; k<=n; k++) {
| ^