x = input("give me the number you want to multiply")
y = input("give me the second number you want to multiply")
y = int(y)
x = int(x)
print (y * x)
factor1 = input('Enter the multiplicand: ')
factor2 = input('Enter the multiplier: ')
product = float(factor1) * float(factor2)
print(f'{factor1} times {factor2} is: {product}')
#output
> Enter the multiplicand: 21
> Enter the multiplier: 3
21 times 3 is 63.0