#include int main() { int a, b, x; scanf("%d%d", &a, &b); x = (b + a - 1) / a; printf("%d\n", x); return 0; }