import math A, B = input().split() n = B/A n = math.ceil(n) print(n)