num=int(input()) str1=input().split() str2=input().split() for i in range(num): if str1[i]!=str2[i]: print(str1[i]) print(str2[i]) print(i+1)