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