a = int(input()) b = int(input()) c = b % a if c == 0: step = ( b // a ) else: step = ( b // a ) + 1 print(step)