import math inp = list(map(int, input().split())) steps = int(math.ceil(inp[1] / inp[0])) print(steps)