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