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