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