/in/foo.cc: In function 'int main()':
/in/foo.cc:19:9: error: 'intans' was not declared in this scope
19 | intans=0;
| ^~~~~~
/in/foo.cc:20:13: error: 'inti' was not declared in this scope; did you mean 'int'?
20 | for(inti=1; i<=n; ++i)if(a[i]>b[h])++ans,++h;
| ^~~~
| int
/in/foo.cc:20:21: error: 'i' was not declared in this scope
20 | for(inti=1; i<=n; ++i)if(a[i]>b[h])++ans,++h;
| ^
/in/foo.cc:20:46: error: 'ans' was not declared in this scope; did you mean 'abs'?
20 | for(inti=1; i<=n; ++i)if(a[i]>b[h])++ans,++h;
| ^~~
| abs
/in/foo.cc:21:23: error: 'ans' was not declared in this scope; did you mean 'abs'?
21 | printf("%d\n",ans);
| ^~~
| abs
/in/foo.cc:22:9: error: 'return0' was not declared in this scope
22 | return0;
| ^~~~~~~