numbers = [-4, 2, 54, 21, -32, 3, 6, 3, 1, 0, -5, 321]

for n in numbers:
    if n == 0:
        break
    if n < 0:
        continue
    print(n)
