the following solution is incorrect. It should be {product} in the last line.
Solution for part01-15_seconds_in_a_day
number1 = int(input("Please type in the first number: "))
number2 = int(input("Please type in the second number: "))
number3 = int(input("Please type in the third number: "))
product = number1 * number2 * number3
print("The product is", product)
the following solution is incorrect. It should be {product} in the last line.
Solution for part01-15_seconds_in_a_day
number1 = int(input("Please type in the first number: "))
number2 = int(input("Please type in the second number: "))
number3 = int(input("Please type in the third number: "))
product = number1 * number2 * number3
print("The product is", product)