bank.c: In function 'main':
bank.c:20:20: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
20 | ss[b] = ss[b & b - 1] + ss[b & -b];
| ~~^~~
bank.c:12:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
12 | scanf("%d%d", &n, &m);
| ^~~~~~~~~~~~~~~~~~~~~
bank.c:14:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
14 | scanf("%d", &aa[i]);
| ^~~~~~~~~~~~~~~~~~~
bank.c:18:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
18 | scanf("%d", &ss[1 << j]);
| ^~~~~~~~~~~~~~~~~~~~~~~~