#include using namespace std; int main(){ ios::sync_with_stdio(0); cin.tie(0); float x; cin >> x; cout << round(x); cout << flush; return 0; }