w, d = map(int, input().split(' ')) if d % w > 0: k = 1 else: k = 0 r = d // w + k print(r)