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