#include int main() { int n = 0; int x = 0; int ans = 0; scanf("%d", &n); scanf("%d", &x); ans = n / x; printf("%d", ans + 1); return 0; }