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