#No.046 import math a, b = input().split(" ") a, b = int(a), int(b) ans = math.ceil(b / a) print(ans)