#include int main(void){ int a,b,n; scanf("%d%d",&a,&b); n=b/a; if(b%a==0) printf("%d\n",n); else printf("%d\n",n+1); return 0; }