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