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