robots.cpp: In function 'void out()':
robots.cpp:24:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
24 | for (auto i : s) cout<<i.fs<<" "; exit(0);
| ^~~
robots.cpp:24:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
24 | for (auto i : s) cout<<i.fs<<" "; exit(0);
| ^~~~
robots.cpp: In function 'int putaway(int, int, int, int*, int*, int*, int*)':
robots.cpp:50:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
50 | for (ll i = 0;i < A;i++) weak.push_back(X[i]); sort(weak.begin(),weak.end());
| ^~~
robots.cpp:50:52: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
50 | for (ll i = 0;i < A;i++) weak.push_back(X[i]); sort(weak.begin(),weak.end());
| ^~~~
robots.cpp:51:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
51 | for (ll i = 0;i < B;i++) small.push_back(Y[i]); sort(small.begin(),small.end());
| ^~~
robots.cpp:51:53: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
51 | for (ll i = 0;i < B;i++) small.push_back(Y[i]); sort(small.begin(),small.end());
| ^~~~