a=int(input()) k=list(input().split()) m=list(input().split()) t=0 h=0 while t <= a: if int(k[t]) <= int(m[t]): h+=1 t+=1 print(h)