n = int(input()) s = input().split() t = input().split() for i in range(n): if s[i] != t[i]: print(i + 1, s[i], t[i], sep="\n")