5554: Round decimals 四舍五入(ABC226A)

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:0 解决:0

题目描述

You are given a real number $X$, which is representable using at most three decimal digits, with three decimal digits.  
Round $X$ to the nearest integer and print the result.
Constraints:
-   0≤X<100
-   $X$ is representable using at most three decimal digits.
-   $X$ has three decimal digits in input.
给定一个实数 X,它最多可以用三位小数表示,并且输入时包含三位小数。将 X 四舍五入到最接近的整数并输出结果。

数据范围:
-   0≤X<100
-  X 最多可以用三位小数表示
-  X 在输入中包含三位小数


输入

X

输出

Print the integer resulting from rounding $X$ to the nearest integer.
输出将 X 四舍五入到最接近整数的结果。

样例输入 复制

3.456

样例输出 复制

3

提示

来源/分类