/in/foo.cc: In function 'int main()':
/in/foo.cc:7:5: warning: statement has no effect [-Wunused-value]
7 | for(i;i*i<n;i++)
| ^
/in/foo.cc:11:1: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
11 | if(i*i==n)s++;cout<<s;
| ^~
/in/foo.cc:11:15: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
11 | if(i*i==n)s++;cout<<s;
| ^~~~
/in/foo.cc:5:7: warning: unused variable 'm' [-Wunused-variable]
5 | int n,m,a[100001],s=0,x,y;
| ^
/in/foo.cc:5:9: warning: unused variable 'a' [-Wunused-variable]
5 | int n,m,a[100001],s=0,x,y;
| ^
/in/foo.cc:5:23: warning: unused variable 'x' [-Wunused-variable]
5 | int n,m,a[100001],s=0,x,y;
| ^
/in/foo.cc:5:25: warning: unused variable 'y' [-Wunused-variable]
5 | int n,m,a[100001],s=0,x,y;
| ^