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