Score : $100$ points
You are given a person's systolic blood pressure, $A$, and diastolic blood pressure, $B$.
Find the mean arterial pressure, $C$, which we define as follows:
Input is given from Standard Input in the following format:
$A$ $B$
Print the value $C$.
Your output is considered correct when its absolute or relative error from our answer is at most $10^{-5}$.
130 100
110
We have $C = \frac{130-100}{3} +100 = 10 + 100 = 110$.
300 50
133.3333333
Note that although all the values in input are integers, the value to output may not be an integer.
123 123
123