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