//No.388 階段 (1) #include using namespace std; int main() { int S; int F; cin >> S; cin >> F; cout << S / F + 1 << endl; return 0; }