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