

n = int(raw_input("Type a positive int: "))

while n != 0 :
    print n
    n = n - 1

raw_input("Press Enter")

