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