ho_t1.cpp: In function 'int main()':
ho_t1.cpp:41:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
41 | for (ll i = 1;i <= n + 1;i++) cin>>A[i].fs,A[i].sc = i; sort(A + 1,A + n + 2);
| ^~~
ho_t1.cpp:41:61: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
41 | for (ll i = 1;i <= n + 1;i++) cin>>A[i].fs,A[i].sc = i; sort(A + 1,A + n + 2);
| ^~~~
ho_t1.cpp:43:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
43 | for (ll i = 1;i <= n;i++) cin>>b[i]; sort(b + 1,b + n + 1);
| ^~~
ho_t1.cpp:43:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
43 | for (ll i = 1;i <= n;i++) cin>>b[i]; sort(b + 1,b + n + 1);
| ^~~~
ho_t1.cpp:37:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
37 | freopen(task".INP","r",stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~