l = list(map(int,input().split(" ")))
for i in range(1,11):
    if i in l:
        continue
    else:
        print(i)
        break