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