a,b = input().split() mod = int(b)%int(a) num = int((int(b)-mod)/int(a)) if mod>0: num += 1; print(num)