import math def minwalk(a,b): walk = b/a roundup = math.ceil(walk) return roundup a,b =map(int,input().split()) print(f"{minwalk(a,b)}")