#include <iostream> using namespace std; int main() { int x,y,w; cin>>x>>y; w=int(1.0*x/y)+1; cout<<w; return 0; }