a, b = map(int, input().split()) ans = 0 now = 0 while now < b: ans += 1 now += a print(ans)