print ("---------------------------------") print ("heres the 5 times table:") number = 5 for multiplyer in range (1, 13) : result = multiplyer * number print(multiplyer, "times", number, "=", result) print ("----------------------------------") print ("countdown to launch:") count = 10 while count (0): print (count) count = count - 1 print ("BLAST OFF!") print input("enter a number:")