#Homework
b = 0
s = int(input("Enter a number:\n"))
x = int(input("Enter the number for the final factor:\n"))
while b != (x+1):
    print(f"{s}×{b} = {s*b}")
    b+=1

Embed on website

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