#include using namespace std; int main() { int step, floor_h; cin >> step >> floor_h; cout << step/floor_h+1 << endl; return 0; }