Write declarations, statements or comments that accomplish each of the following tasks:
a)State that a program will calculate the product of three integers.
b)Create a Scanner that reads values from the standard input.
c)Declare the variable x,y,z and result to be of type int
d)Prompt the use to enter the first integer.
e) Read the first integer from the use and store it in the variable x.
f)Prompt the user to enter the second integer.
g)Read the second integer from the user and store it in the variable y.
h)Prompt the user to enter the third integer.
i)Read the third integer from the user and store it in the variable z.
j)Compute the product of the three integers contained in variables x,y and z, and design the result to the variable result.
k)Display the message"Product is" followed by the value of the variable result.