"""Exercise 20.1.3 — Missing colon after while

Chapter 20: Common Pitfalls — Everyday Programming

This program should count down from 3 to 1 for a rocket launch.

This program contains exactly one bug. Solution: sol_20_1_3.py
"""

seconds = 3
while seconds > 0
    print(seconds)
    seconds = seconds - 1
