def main():
    x = 1
    while x > 0:
        print x
        x = x + 1

main()
