step, lim = map(int, input().rstrip()) def sum(n): if step * n > lim: return n return sum(n + 1) print(sum(1))