Source code -
# A simple program made by Linux & Windows Tech to find the product of two numbers using Python
a = input("Enter the first number:")
b = input("Enter the second number:")
print("The product of those two numbers are:", float(a) * float(b))
print("Thank you for using a program made by Linux & Windows Tech")