#include main() { long step, length; scanf("%ld %ld", &step, &length); if (length % step == 0) printf("%d\n", length/step); else printf("%d\n", length/step+1); }