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