// yukicoder: No.477 MVP // 2019.8.2 bal4u #include int main() { long long N, K; scanf("%lld%lld", &N, &K); printf("%lld\n", N/(K+1)+1); return 0; }