first = input().split() A = int(first[0]) B = int(first[1]) r = B/A r = int(r) if B%A == 0 : print(r) else: print(r+1)