a = list(map(int,input().split()))
for i in range(max(a)):
    if i not in a:
        print(i)
        break