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