// yukicoder: No.388 階段 (1) // 2019.4.15 bal4u #include int main() { int S, F; scanf("%d%d", &S, &F); printf("%d\n", S / F + 1); return 0; }