#include #include int main(void) { double a, b; scanf("%lf %lf", &a, &b); printf("%.0lf\n", ceil((a + 1) / b)); return 0; }