#include int main (void) { double a, b; scanf("%lf%lf", &a, &b); printf("%d\n", (int)(b / a + 0.9)); // 0.9を足して切り上げ return 0; }