#include #include int main (void) { double a, b; scanf("%lf%lf", &a, &b); int i = ceil(b / a); printf("%d\n", i); return 0; }