import math a, b = map(int,input(). split(' ')) n = b / a #nの小数点以下切り上げ n = math.ceil(n) print(n)