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