#abc082a. [abc082_a]Round Up the Mean
[abc082_a]Round Up the Mean
Problem Statement
You are given two positive integers and . Let be the average of and . Print rounded up to the nearest integer.
Constraints
- and are integers.
Input
Input is given from Standard Input in the following format:
Output
Print rounded up to the nearest integer.
Sample Input 1
1 3
Sample Output 1
2
The average of and is , and it will be rounded up to the nearest integer, .
Sample Input 2
7 4
Sample Output 2
6
The average of and is , and it will be rounded up to the nearest integer, .
Sample Input 3
5 5
Sample Output 3
5