#include <iomanip> #include <iostream> using namespace std; int main() { float num; cin>>num; num+=0.000001; cout<<fixed<<setprecision(0)<<num; }