bank.cpp: In function 'void rec(int, int)':
bank.cpp:38:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (i=0;i<v[j].size();++i){
~^~~~~~~~~~~~
bank.cpp: At global scope:
bank.cpp:46:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main(){
^
bank.cpp: In function 'int main()':
bank.cpp:59:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (i=0;i<v[0].size();++i){
~^~~~~~~~~~~~
bank.cpp:47:11: warning: unused variable 'c' [-Wunused-variable]
int i,c=1,j;
^
bank.cpp:49:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
rep(i,n)scanf("%d",&a[i]);
~~~~~^~~~~~~~~~~~
bank.cpp:50:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
rep(i,m)scanf("%d",&b[i]);
~~~~~^~~~~~~~~~~~