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