# This was posted in the Loop notes as a
# "Trick Clicker Question"
# What will this do?

x = 5
for t in range(1, x):
    print(t)
    x = x + 1

print(x)
    

