#include using namespace std; using ll=long long; using P=pair; using PP=tuple; using PPP=tuple; using vi=vector; using vll=vector; using vvi=vector; using vvvi=vector; using vvvvi=vector; using vp=vector

; using vvp=vector; using vb=vector; using vvb=vector; #define fr(i,n) for(ll i=0;i<(ll)(n);i++) #define FR(i,k,n) for(ll i=k;i<(ll)(n);i++) #define rep(i,n) for(ll i=(n)-1;i>=0;i--) #define REP(i,n,k) for(ll i=(n)-1;i>=(ll)k;i--) #define sz(a) (ll)(a.size()) #define fi first #define se second #define pb emplace_back #define eb emplace_back #define all(a) a.begin(),a.end() #define lb(v,k) (lower_bound(all(v),(k))-v.begin()) #define ub(v,k) (upper_bound(all(v),(k))-v.begin()) #define rsort(a) {sort(all(a));reverse(all(a));} #define dupli(a) {sort(all(a));a.erase(unique(all(a)),a.end());} #define PQ(T) priority_queue #define SPQ(T) priority_queue,greater> #define decimal cout< bool chmin(T&a,T b){if(a>b){a=b;return true;}return false;} template bool chmax(T&a,T b){if(a void out(T a){cout< void outp(T a){cout<<'('< void outvp(T v){for(auto x:v)cout<<'('< void outvvp(T v){fr(i,v.size())outvp(v[i]);} template void outv(T v){fr(i,v.size()){if(i)cout<<' ';cout< void outvv(T v){fr(i,v.size())outv(v[i]);} template void outset(T s){auto itr=s.begin();while(itr!=s.end()){if(itr!=s.begin())cout<<' ';cout<<*itr;itr++;}cout<<'\n';} template bool isin(T x,T l,T r){return (l)<=(x)&&(x)<=(r);} template void yesno(T b){if(b)out("yes");else out("no");} template void YESNO(T b){if(b)out("YES");else out("NO");} template void YesNo(T b){if(b)out("Yes");else out("No");} template void noyes(T b){if(b)out("no");else out("yes");} template void NoYes(T b){if(b)out("No");else out("Yes");} template void NOYES(T b){if(b)out("NO");else out("YES");} void outs(ll a,ll b){if(a>=inf-100)out(b);else out(a);} ll gcd(ll a,ll b){if(b==0)return a;return gcd(b,a%b);} ll modpow(ll a,ll b){ll res=1;a%=mod;while(b){if(b&1)res=res*a%mod;a=a*a%mod;b>>=1;}return res;} void work(){ ll a,b;cin>>a>>b; out((b+a-1)/a); } int main(){ cin.tie(0);ios::sync_with_stdio(false); ll t=1; rep(_,t)work(); }