Answer:
# Define functions
def print_product(num1,num2,num3):
print ("The product: ",num1*num2*num3)
num1 =int(input ("Enter the 1st number: "))
num2 =int(input ("Enter the 2nd number: "))
num3 =int(input ("Enter the 3rd number:" ))
print_product(num1,num2,num3)
Step-by-step explanation: