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