据说有人看不懂这段代码

l = [3, 45, 9, 8, 12, 89, 103, 42, 54, 79]
n = int(input())
for i in l:
    if i-n:
        print(i)
    else:
        break