a, b = map(int,input().split()) if b % a == 0: R = b / a else: R = (b // a) + 1 print(int(R))