N=input() S=input().split() T=input().split() i=1 while S[i] == T[i]: i+=1 print(str(i+1),S[i],T[i],sep='\n')