plan.cpp: In function 'int main()':
plan.cpp:89:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
89 | for(int i=1;i<=qq;i++)
| ^~~
plan.cpp:91:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
91 | return 0;
| ^~~~~~
plan.cpp:48:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
48 | scanf("%d%d",&n,&m);
| ~~~~~^~~~~~~~~~~~~~
plan.cpp:51:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
51 | scanf("%d%d%d",&u,&v,&w);
| ~~~~~^~~~~~~~~~~~~~~~~~~
plan.cpp:58:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
58 | scanf("%d",&k);
| ~~~~~^~~~~~~~~
plan.cpp:62:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
62 | scanf("%d",&x);
| ~~~~~^~~~~~~~~
plan.cpp:72:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
72 | scanf("%d",&qq);
| ~~~~~^~~~~~~~~~
plan.cpp:75:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
75 | scanf("%d%d",&u,&v);
| ~~~~~^~~~~~~~~~~~~~