Question: Using the statements you wrote in Exercise, write a complete program that calculates the product of three integers.
Exercise: Write a statement (or comment) to accomplish each of the following: a) State that a program will calculate the product of three integers. b) Define the variables x, y, z and result to be of type int. c) Prompt the user to enter three integers. d) Read three integers from the keyboard and store them in the variables x, y and z. e) Compute the product of the three integers contained in variables x, y and z, and assign the result to the variable result. f) Print "The product is" followed by the value of the integer variable result.