5 lines
144 B
Python
5 lines
144 B
Python
_ = input()
|
|
knots = set(map(int, input().split()))
|
|
learnedknots = set(map(int, input().split()))
|
|
print(list(knots.difference(learnedknots))[0])
|