for i in range(1, 10):
    print(i)
else:
    print("End:", i)

i = 1
while i < 10:
    print(i)
    i = i + 1
else:
    print("End:", i)
