210k views
3 votes
Read three integers from user input. Then, print the product of those integers. Ex: If input is 2 3 5, output is 30. Note: Our system will run your program several times, automatically providing different input values each time, to ensure your program works for any input values.

2 Answers

6 votes

Answer:

a = int(input())

b = int(input())

c = int(input())

solve = a * b * c

print (solve)

Step-by-step explanation:

you want to multiply them

User Winston Smith
by
4.2k points
2 votes

Answer:

Following is attached an image in which code is written along with necessary comments.

I hope it will help you!

Step-by-step explanation:

Read three integers from user input. Then, print the product of those integers. Ex-example-1
User Maximo
by
4.2k points