a, b = map(int, input().split(' ')) print(int(b/a) if b % a == 0 else int(b/a)+1)