/in/foo.cc: In function 'void dfs(int, int)':
/in/foo.cc:33:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (s + sum[n] - sum[x-1] <= ans)
^~
/in/foo.cc:35:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if (x == n+1)
^~
/in/foo.cc: In function 'int main()':
/in/foo.cc:66:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int i = 1; i <= n; i++)
^~~
/in/foo.cc:68:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
int x, y;
^~~