bank.cpp:9:25: warning: suggest parentheses around '+' inside '<<' [-Wparentheses]
9 | pair<int,int> dp[1<<MAXN+5];
| ~~~~^~
bank.cpp: In function 'int main()':
bank.cpp:12:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
12 | scanf("%d%d",&n,&m);
| ~~~~~^~~~~~~~~~~~~~
bank.cpp:13:31: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
13 | for(int i=1; i<=n; i++) scanf("%d",&sal[i]);
| ~~~~~^~~~~~~~~~~~~~
bank.cpp:14:31: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
14 | for(int i=1; i<=m; i++) scanf("%d",&bank[i]);
| ~~~~~^~~~~~~~~~~~~~~