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