//yukicoder No.46 #include int main(){ int a,b; int ans=0; scanf("%d %d",&a,&b); ans = (b + a - 1)/a; printf("%d",ans); return 0; }