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