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