#include #include<math.h> using namespace std;

int main() {

double d;
cin >> d;

// write your code here......
//cout<<round(d)<<endl;//使用math.h中的round函数
printf("%.0f",d);//double自动四舍五入,格式化输出0位小数即可
return 0;

}