/in/foo.cc:4:13: warning: overflow in implicit constant conversion [-Woverflow]
const int N=1e+10;
^~~~~
/in/foo.cc:13:9: error: size of array 'e' is not an integral constant-expression
Node e[N];
^
/in/foo.cc: In function 'int find(int)':
/in/foo.cc:16:5: error: 'f' was not declared in this scope
if(f[x]==x)
^
/in/foo.cc:18:10: error: 'f' was not declared in this scope
int tmp=f[x];
^
/in/foo.cc:18:6: warning: unused variable 'tmp' [-Wunused-variable]
int tmp=f[x];
^~~
/in/foo.cc: At global scope:
/in/foo.cc:23:8: error: size of array 'f' is not an integral constant-expression
int f[N];
^
/in/foo.cc: In function 'int main()':
/in/foo.cc:49:16: error: 'print' was not declared in this scope
print("%d",ans);
^