"""
Ch5 Q4
A time coutner
"""
import time
n = 0

while True:
    print(n*5, "seconds")
    n += 1
    time.sleep(5)

#To exit the while loop, press the red square on top right corner of IPython Console
#Or retart the kernel

