#program to count down 10 seconds and then print "Blast off" import time; ReadyForCountdown =input("Press enter when you're ready to count down...") for secs in range(10,0,-1): print (secs) time.sleep(1) print("BLAST-OFF!")