#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e; cin>>a>>b; c=a-b; e=a/b; d=ceil(e); cout<<d; return 0; }