#include int main(int argc, char *argv[]){ int A, B, C; scanf("%d%d", &A, &B); C = (B + A - 1)/ A; printf("%d\n", C); return 0; }