The displacement of an object is given by
. Read double variables objectVelocity and timeMoved from input, respectively. Then, compute objectDisplacement using the formula. Finally, output "Object displacement is " followed by the value of objectDisplacement to five digits after the decimal point. End with a newline.
Ex: If the input is 7.0 10.0, then the output is:
Object displacement is 70.00000
Note: printf() can be used with "%.5f" to output a double to 5 digits after the decimal point.