#include int main(){ int a, b, count, mod; scanf("%d%d", &a, &b); count = b / a; mod = b % a; if(mod >= 1){ count += 1; } printf("%d\n", count); }