#Python program to find the product of the input number
Number1=float(input("enter Number 1:"))
# to take the number1 as an input by the user.
Number2=float(input("enter Number 2:"))
# to take the number2 as an input by the user.
Product=Number1*Number2
# formula for the calculation of product
print(Product)
# print product of two numbers.
Study more about Python at Python Class 10