Odpowiedź:
n = int(input("Podaj liczbe: "))
for i in range(1, 11):
print(i, "X", n, "=", i*n)
Wyjaśnienie: