A, B = map(int, raw_input().strip().split(" ")) ans = B / A if B > A * ans: ans += 1 print(ans)