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