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