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