# 入力の分解 output_max = 1000000000 + 7 s = input() s = s.split() inp = [int(tmp) for tmp in s] print(str((inp[1]//inp[0])+1)) print()