#abc226a. [abc226_a]Round decimals
[abc226_a]Round decimals
Problem Statement
You are given a real number , which is representable using at most three decimal digits, with three decimal digits.
Round to the nearest integer and print the result.
Constraints
- is representable using at most three decimal digits.
- has three decimal digits in input.
Input
Input is given from Standard Input in the following format:
Output
Print the integer resulting from rounding to the nearest integer.
Sample Input 1
3.456
Sample Output 1
3
The digit in the first decimal place of is , so we should round it down to .
Sample Input 2
99.500
Sample Output 2
100
Sample Input 3
0.000
Sample Output 3
0