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