copy and paste the orange text. only tested for Python 2.6.3
number = input("type a number ")
times = input ("with it's times table up to ")
for looper in range (1, (times + 1)):
print looper, "x", number, "=", looper * number
# made by the vitamin c guy