#include int main(void){ int a,b,k; scanf("%d %d",&a,&b); for(k=0;b>0;k++){ b-=a; } printf("%d\n",k); return 0; }