carnival.cpp: In function 'bool p(long long int, long long int)':
carnival.cpp:23:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=x;i<=n;i++) cout<<i<<" ";cout<<endl;
^~~
carnival.cpp:23:37: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(int i=x;i<=n;i++) cout<<i<<" ";cout<<endl;
^~~~
carnival.cpp:26:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=x;i<=n;i++) cout<<i<<" ";cout<<endl;
^~~
carnival.cpp:26:37: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(int i=x;i<=n;i++) cout<<i<<" ";cout<<endl;
^~~~
carnival.cpp: In function 'int main()':
carnival.cpp:36:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int j=1;j<=n;j++) graph[i][j]=0;inc[i]=0;
^~~
carnival.cpp:36:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(int j=1;j<=n;j++) graph[i][j]=0;inc[i]=0;
^~~