Answer:
Following are the pseudocode which is given below:
Explanation:
Step 1: Read the three input variable a,b,c by the user.
Step 2:Declared another variable called "product" which is used for storing the result the product of the three values.
Step 3:Perform operation [product=a*b*c] means to multiply a * b * c and stored in the product.
Step 4: print product.