

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
収縮期血圧 と拡張期血圧 が与えられます。
平均血圧 を求めてください。
ただし、平均血圧は以下のように定義されるとします。
制約
- 入力に含まれる値は全て整数である
入力
入力は以下の形式で標準入力から与えられる。
出力
を出力せよ。
出力値と想定解答の絶対誤差または相対誤差が 以下であれば正解と判定される。
入力例 1Copy
130 100
出力例 1Copy
110
となります。
入力例 2Copy
300 50
出力例 2Copy
133.3333333
入力される値は全て整数ですが、出力する値は整数とは限らないことに注意してください。
入力例 3Copy
123 123
出力例 3Copy
123
Score : points
Problem Statement
You are given a person's systolic blood pressure, , and diastolic blood pressure, .
Find the mean arterial pressure, , which we define as follows:
- .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the value .
Your output is considered correct when its absolute or relative error from our answer is at most .
Sample Input 1Copy
130 100
Sample Output 1Copy
110
We have .
Sample Input 2Copy
300 50
Sample Output 2Copy
133.3333333
Note that although all the values in input are integers, the value to output may not be an integer.
Sample Input 3Copy
123 123
Sample Output 3Copy
123