Answer:
The program in Python is as follows:
first = int(input())
second = int(input())
third = int(input())
s = first * second * third
print(s)
Step-by-step explanation:
This prompts the user for first input
first = int(input())
This prompts user for second input
second = int(input())
This prompts user for third input
third = int(input())
This calculates the product
s = first * second * third
This prints the calculated product
print(s)