#include int main(void){ long a, b, i=0, sum=0; scanf("%ld %ld", &a, &b); while(b > sum){ sum += a; i++; } printf("%ld\n", i); return 0; }