print("\tTabuada do USU!")

num = int(input("\nExibir tabuada do número: "))
print("\n")

for i in range(10):

    print(f"{num} x {i + 1} = {num * (i + 1)}")

Embed on website

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