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