info = list(map(int, input().split())) step = info[0] length = info[1] total = 0 n = 0 while total < length: total += step n += 1 print(n)