#include <cmath>

using namespace std;

int main(){
    double x;
    while(cin>>x){
        cout<<round(x);
        
    }
}