a, b = map(int, input().split()) i = 0 count = 0 while i < b: i += a count += 1 print(count)