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