#include<bits/stdc++.h> using namespace std; int main(){ float f; cin>>f; int a; if(f>=0) a=f; else a=f+1; cout<<a; return 0; }