//No.388 階段(1) #include using namespace std; int main() { int s, f, ans; cin >> s >> f; ans = s / f + 1; cout << ans << endl; return 0; }