input_nums = [int(e) for e in input().split()] one_to_ten = [e for e in range(1, 11)] for i in input_nums: if i not in one_to_ten: print(i) break