input=list(map(int,input().split())) for i in range(len(input)): if input[i] != i+1: print(i+1) break