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