#include using namespace std; int main(int argc, char const* argv[]) { int S, F; cin >> S >> F; cout << S / F + 1 << endl; return 0; }