0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 11:25:24 +00:00
OI-codes/Luogu/problem/B2016/B2016.cpp
2021-07-16 11:16:13 +08:00

11 lines
183 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
double x;
cin >> x;
cout << fixed << setprecision(0) << (x < 0 ? ceil(x) : floor(x)) << endl;
return 0;
}