input() a=input().split() b=input().split() for i,j in zip(a,b): if i!=j: print(i,j,sep='\n') break