#include int main(void) { int S, F; scanf("%d %d", &S, &F); if (S < F) printf("1\n"); else printf("%d\n", S / F + (S % F != 0)); }