burza.cpp: In lambda function:
burza.cpp:16:13: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
16 | if (par == e) continue; isleaf = 0;
| ^~
burza.cpp:16:37: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
16 | if (par == e) continue; isleaf = 0;
| ^~~~~~
burza.cpp:13:14: warning: variable 'isleaf' set but not used [-Wunused-but-set-variable]
13 | bool isleaf = 1;
| ^~~~~~
burza.cpp: In function 'int main()':
burza.cpp:8:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
8 | scanf("%d %d", &n, &k);
| ~~~~~^~~~~~~~~~~~~~~~~
burza.cpp:10:38: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
10 | for (int i = 1; i < n; i++) scanf("%d %d", &x, &y), v[x].emplace_back(y), v[y].emplace_back(x);
| ~~~~~^~~~~~~~~~~~~~~~~