import math def hajimeno(a, b): return math.ceil(b / a) a, b = map(int, input().strip().split()) print(hajimeno(a, b))