import math a, b = map(int, input().split()) steps = math.ceil(b / a) print(steps)