a, b = map(int, raw_input().split()) count = 0 while True: count += 1 b -= a if b < 0: break print count