100 #ABC082A. [ABC082A] Round Up the Mean

[ABC082A] Round Up the Mean

Score : 100100 points

Problem Statement

You are given two positive integers aa and bb. Let xx be the average of aa and bb. Print xx rounded up to the nearest integer.

Constraints

  • aa and bb are integers.
  • 1a,b1001 \leq a, b \leq 100

Input

Input is given from Standard Input in the following format:

aa bb

Output

Print xx rounded up to the nearest integer.

1 3
2

The average of 11 and 33 is 2.02.0, and it will be rounded up to the nearest integer, 22.

7 4
6

The average of 77 and 44 is 5.55.5, and it will be rounded up to the nearest integer, 66.

5 5
5