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