Numéro Table Python

a = int(input("enter your number: "))

for i in range (1,11):
    c = a*i
    print(a,"X",i,"=",c)
Coding boy Hasya