#include using namespace std; using ll=long long; int s,f; void solve() { cin>>s>>f; cout<<(s+f-1)/f+(s%f==0)<<'\n'; } int main() { ios::sync_with_stdio(false);cin.tie(NULL); int tc=1; // cin>>tc; while(tc--)solve(); return 0; }