#include int main() { int S, F; scanf("%d", &S); scanf("%d", &F); if (S >= F) printf("%d", (S / F)+1); else printf("%d", 1); return 0; }