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