#include using namespace std; int main(void){ int S, F, i; scanf("%d %d", &S, &F); i = S / F; printf("%d\n", i+1); return 0; }