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