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