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