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