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