# Simple countdown problem
counter = 10
print("Start counting...")
while counter > 0:
    print(counter)
    counter = counter - 1
print("Fire!")