A - Discount Fare Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点: 100

問題文

A 駅と B 駅を結ぶ鉄道があり、運賃は X 円です。

また、B 駅と C 駅を結ぶバスがあり、運賃は Y 円です。

joisinoお姉ちゃんは、A 駅から B 駅まで鉄道で移動し、B 駅から C 駅までバスで移動すると、バスの運賃が半額になる特別券を手に入れました。

この特別券を用いたとき、A 駅から C 駅まで移動するのにいくらかかるか求めてください。

制約

  • 1 \leq X,Y \leq 100
  • Y は偶数
  • 入力は全て整数

入力

入力は以下の形式で標準入力から与えられる。

X Y

出力

A 駅から C 駅まで移動するのに x 円かかるとき、x を出力せよ。


入力例 1

81 58

出力例 1

110
  • 鉄道の運賃は 81 円です。
  • バスの運賃は半額となるため、582=29 円です。

よって、A 駅から C 駅まで移動するのに 110 円かかります。


入力例 2

4 54

出力例 2

31

Score: 100 points

Problem Statement

There is a train going from Station A to Station B that costs X yen (the currency of Japan).

Also, there is a bus going from Station B to Station C that costs Y yen.

Joisino got a special ticket. With this ticket, she can take the bus for half the fare if she travels from Station A to Station B by train and then travels from Station B to Station C by bus.

How much does it cost to travel from Station A to Station C if she uses this ticket?

Constraints

  • 1 \leq X,Y \leq 100
  • Y is an even number.
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

X Y

Output

If it costs x yen to travel from Station A to Station C, print x.


Sample Input 1

81 58

Sample Output 1

110
  • The train fare is 81 yen.
  • The train fare is 582=29 yen with the 50% discount.

Thus, it costs 110 yen to travel from Station A to Station C.


Sample Input 2

4 54

Sample Output 2

31