#include int main(void) { int s, f, estimate; scanf("%d%d", &s, &f); estimate = s / f + 1; printf("%d\n", estimate); return 0; }