info = list(map(int, input().split())) step = info[0] length = info[1] mod = divmod(length, step) if mod[1] == 0: print(mod[0]) else: print(mod[0] + 1)