#include<bits/stdc++.h> using namespace std; int main(){ int k,n; cin>>n>>k; int s=n/k; if(n%k!=0){ s++; } cout<<s+1<<endl; return 0; }