#include #include #include int main(void) { int sf[2]; char str[32], *ch; fgets(str, sizeof(str), stdin); ch = strtok(str, " \n"); for (int i = 0; i < 2; i++) { if (ch == NULL) break; else sf[i] = atoi(ch); ch = strtok(NULL, " \n"); } printf("%d\n", sf[0] / sf[1] + 1); return 0; }