import math a, b = map(int, input().split()) ans = math.ceil(b / a) print(int(ans))