joi2019_ho_t4.cpp: In function 'int main()':
joi2019_ho_t4.cpp:30:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(j=1; j<=N; j++) printf("%d ", A[1][j]); printf("\n");
^~~
joi2019_ho_t4.cpp:30:49: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(j=1; j<=N; j++) printf("%d ", A[1][j]); printf("\n");
^~~~~~
joi2019_ho_t4.cpp:31:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(j=1; j<=N; j++) printf("%d ", A[2][j]); printf("\n");
^~~
joi2019_ho_t4.cpp:31:49: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(j=1; j<=N; j++) printf("%d ", A[2][j]); printf("\n");
^~~~~~
joi2019_ho_t4.cpp:18:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &N);
~~~~~^~~~~~~~~~
joi2019_ho_t4.cpp:22:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &x, &y);
~~~~~^~~~~~~~~~~~~~~~