a,b = map(int,input().split()) cnt = 0 while True: if b-a > 0: b -= a cnt += 1 else: break print (cnt)