N = input().split() d = int(N[1]) p = 0 ans = 0 while p < d: p += int(N[0]) ans += 1 print(ans)