inp = list(map(int, input().split())) i = 0 count = 0 one_s = inp[0] target = inp[1] while i < target: i += one_s count += 1 print(count)