bitaro.cpp: In function 'int main()':
bitaro.cpp:23:20: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
23 | int n, m, q; scanf("%d %d %d", &n, &m, &q); assert(q == 1);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
bitaro.cpp:25:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
25 | scanf("%d %d", &b, &a), g[a].push_back(b);
| ~~~~~^~~~~~~~~~~~~~~~~
bitaro.cpp:27:17: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
27 | int t, y; scanf("%d %d", &t, &y);
| ~~~~~^~~~~~~~~~~~~~~~~
bitaro.cpp:29:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
29 | scanf("%d", &a), busy[a] = 1;
| ~~~~~^~~~~~~~~~