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