a, b = map(int, input().split()) r, m = divmod(b, a) if m == 0: print(r) else: print(r + 1)