print( "------------------" ) print( "i can count to 10:" ) for number in range( 1,11 ) : print( number ) print( "------------------" ) print( "here's the 5 times table:" ) number = 5 for multiplier in range( 1, 13 ) : result = multiplier * number print( multiplier, "times", number, "=", result ) print( "------------------" ) print( "Countdown to launch:" ) count = 10 while count > 0 : print( count ) count = count - 1 print( "BLAST OFF!" )