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