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