x = [int(i) for i in input().split(" ")] if (x[1]/x[0]).is_integer(): print(x[1]//x[0]) else: print(x[1]//x[0] + 1)