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<<" "<<i.sc<<"\n"; exit(0);
| ^~~
robots.cpp:24:51: 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<<" "<<i.sc<<"\n"; exit(0);
| ^~~~
robots.cpp: In function 'int putaway(int, int, int, int*, int*, int*, int*)':
robots.cpp:57:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
57 | for (ll i = 0;i < A;i++) weak.push_back(X[i]); sort(weak.begin(),weak.end());
| ^~~
robots.cpp:57:52: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
57 | for (ll i = 0;i < A;i++) weak.push_back(X[i]); sort(weak.begin(),weak.end());
| ^~~~
robots.cpp:58:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
58 | for (ll i = 0;i < B;i++) small.push_back(Y[i]); sort(small.begin(),small.end());
| ^~~
robots.cpp:58:53: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
58 | for (ll i = 0;i < B;i++) small.push_back(Y[i]); sort(small.begin(),small.end());
| ^~~~