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