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