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