Read three integers from user input. Then, print the product of those integers. Ex: If input is 235, 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.
1 first-2
2 second-3
3 third=5
4 s=int(first second third)
5 print(s)