import math line = input().split(" ") meter_for_one_step = int(line[0]) section = int(line[1]) print(math.ceil(section / meter_for_one_step))