#include int main(void) { int a, b, i=1; scanf("%d %d", &a, &b); while(a*i < b){ i++; } printf("%d", i); return 0; }