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