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