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