print('Hello world!') 
#Este programa muestra la tabla de multiplicar solicitada
#Programador: Alice Yuman
dato=int(input("Escriba un numero"))
tablas=range(1,11)
for x in tablas:
    resulta=dato*x
print("Multiplicar", dato, "por", x, "es igual a", resulta)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: