#include #include using namespace std; int main() { // ステア君が現在居る段数 S, ステア君の家の一階層分に相当する段数 F int S,F; cin >> S >> F; int ans; ans = S / F + 1; cout << ans << endl; return 0; }