B = map(int,input().split()) for i,value in enumerate(B): if i+1 != B: print(value) break