#include int main(void) { int s, f; int i; scanf("%d%d", &s, &f); for (i = 1; i > 0; i++) if (s < f * i) break; printf("%d\n", i); return 0; }