a = int(input()) b = int(input()) walk = 0 cnt = 0 while walk < b: walk += a cnt += 1 print(cnt)