information.cpp: In function 'int main()':
information.cpp:46:24: error: 's' was not declared in this scope
scanf("%d%d", &n, &m);s
^
information.cpp:48:12: warning: statement has no effect [-Wunused-value]
for(i=1; i<=m; i++){
~^~~
information.cpp:48:20: error: expected ';' before ')' token
for(i=1; i<=m; i++){
^
information.cpp:55:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(A.size() != n - 1 || B.size() != n - 1){
~~~~~~~~~^~~~~~~~
information.cpp:55:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(A.size() != n - 1 || B.size() != n - 1){
~~~~~~~~~^~~~~~~~
information.cpp:56:12: warning: division by zero [-Wdiv-by-zero]
return 1 / 0;
~~^~~
information.cpp:44:9: warning: unused variable 'u' [-Wunused-variable]
int i, u;
^
information.cpp:46:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &n, &m);s
~~~~~^~~~~~~~~~~~~~~~