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