100 atcoder#ABC082A. [ABC082A] Round Up the Mean
[ABC082A] Round Up the Mean
Score : points
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.
1 3
2
The average of and is , and it will be rounded up to the nearest integer, .
7 4
6
The average of and is , and it will be rounded up to the nearest integer, .
5 5
5