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