2025-03-03 19:11:28 +08:00

7 lines
105 B
C

#include <stdio.h>
int main() {
int a, b;
scanf("%d %d", &a, &b);
printf("%d", b / a + 1);
}