#include int main() { int S, F, ans; scanf("%d %d", &S, &F); ans = S / F + 1; printf("%d\n", ans); return 0; }