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