zagonetka.cpp: In function 'int32_t main()':
zagonetka.cpp:44:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (auto x : v) cout << x << " "; cout << endl;
^~~
zagonetka.cpp:44:44: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (auto x : v) cout << x << " "; cout << endl;
^~~~
zagonetka.cpp:52:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (auto x : minAns) cout << x << " "; cout << "\n";
^~~
zagonetka.cpp:52:45: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (auto x : minAns) cout << x << " "; cout << "\n";
^~~~
zagonetka.cpp:53:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (auto x : maxAns) cout << x << " "; cout << "\n";
^~~
zagonetka.cpp:53:45: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (auto x : maxAns) cout << x << " "; cout << "\n";
^~~~