92 #ABC226A. [ABC226A] Round decimals

[ABC226A] Round decimals

Score : 100100 points

Problem Statement

You are given a real number XX, which is representable using at most three decimal digits, with three decimal digits. Round XX to the nearest integer and print the result.

Constraints

  • 0X<1000 \leq X < 100
  • XX is representable using at most three decimal digits.
  • XX has three decimal digits in input.

Input

Input is given from Standard Input in the following format:

XX

Output

Print the integer resulting from rounding XX to the nearest integer.

3.456
3

The digit in the first decimal place of 3.4563.456 is 44, so we should round it down to 33.

99.500
100
0.000
0