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