import math N = list(map(int, input().split())) if not N[1] % N[0] == 0: print(int(math.floor(N[1] / N[0]) + 1)) else: print(int(N[1] / N[0]))