The mean of two numbers, val1 and val2, is given by $meanOfTwo = \frac{(val1 + val2)}{2.0}$. Read double variables val1 and val2 from input, respectively. Then, compute meanOfTwo using the formula. Finally, output "Mean is " followed by the value of meanOfTwo to five digits after the decimal point. End with a newline.