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