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