#include <iostream> using namespace std; int main() { double num; while(cin >> num) { cout << static_cast<int>(num + 0.5) << endl; // } }