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