bank.cpp: In function 'int DP(int, int)':
bank.cpp:26:7: warning: unused variable 'to' [-Wunused-variable]
26 | int to = __builtin_ctz(m);
| ^~
bank.cpp: In function 'int main()':
bank.cpp:41:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
41 | scanf("%d %d", &n, &m);
| ~~~~~^~~~~~~~~~~~~~~~~
bank.cpp:43:34: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
43 | for(int i = 0; i < n; i++) scanf("%d", a + i);
| ~~~~~^~~~~~~~~~~~~
bank.cpp:44:34: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
44 | for(int i = 0; i < m; i++) scanf("%d", b + i);
| ~~~~~^~~~~~~~~~~~~