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