information.cpp: In function 'int main()':
information.cpp:57:15: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
57 | if(V1.size()!=N-1 || V2.size()!=N-1) continue;
| ~~~~~~~~~^~~~~
information.cpp:57:33: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
57 | if(V1.size()!=N-1 || V2.size()!=N-1) continue;
| ~~~~~~~~~^~~~~
information.cpp:58:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
58 | for(auto it : V1) printf("%d ", it); printf("\n");
| ^~~
information.cpp:58:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
58 | for(auto it : V1) printf("%d ", it); printf("\n");
| ^~~~~~
information.cpp:59:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
59 | for(auto it : V2) printf("%d ", it); printf("\n");
| ^~~
information.cpp:59:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
59 | for(auto it : V2) printf("%d ", it); printf("\n");
| ^~~~~~
information.cpp:34:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
34 | scanf("%d%d", &N, &M);
| ~~~~~^~~~~~~~~~~~~~~~
information.cpp:38:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
38 | scanf("%d%d", &u, &v);
| ~~~~~^~~~~~~~~~~~~~~~