a=int(input("Table de :"))
for i in range(0,10):
    b=a*i
    print(" ",a," x ",i," = ",b,"")
print("Voici la table de ",a," ")