/in/foo.cc:51:2: error: stray '#' in program
51 | }#include <iostream>
| ^
/in/foo.cc:51:3: error: 'include' does not name a type
51 | }#include <iostream>
| ^~~~~~~
/in/foo.cc:56:11: error: redefinition of 'const int MAXN'
56 | const int MAXN = 100005;
| ^~~~
/in/foo.cc:6:11: note: 'const int MAXN' previously defined here
6 | const int MAXN = 100005;
| ^~~~
/in/foo.cc:57:5: error: redefinition of 'int arr [100005]'
57 | int arr[MAXN];
| ^~~
/in/foo.cc:7:5: note: 'int arr [100005]' previously declared here
7 | int arr[MAXN];
| ^~~
/in/foo.cc:59:5: error: redefinition of 'int main()'
59 | int main() {
| ^~~~
/in/foo.cc:9:5: note: 'int main()' previously defined here
9 | int main() {
| ^~~~