#include<iostream> #include<cmath> //数学工具箱 using namespace std; int main(){ double a; int b; cin>>a; b=ceil(a); cout<<b; }