worst_reporter2.cpp: In function 'int main()':
worst_reporter2.cpp:27:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
27 | for(int i=1; i<=N; i++) printf("%d ", A[i]); printf("\n");
| ^~~
worst_reporter2.cpp:27:47: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
27 | for(int i=1; i<=N; i++) printf("%d ", A[i]); printf("\n");
| ^~~~~~
worst_reporter2.cpp:19:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
19 | scanf("%d", &N);
| ~~~~~^~~~~~~~~~
worst_reporter2.cpp:20:31: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
20 | for(int i=1; i<=N; i++) scanf("%d%d", &_A[i].second, &_A[i].first), _A[i].second*=-1;
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
worst_reporter2.cpp:21:31: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
21 | for(int i=1; i<=N; i++) scanf("%d%d", &_A[i+N].second, &_A[i+N].first);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~