B = list(map(int, input().split())) for i in range(1, len(B) + 2): if i not in B: print(i) else: pass