import math a = int(input()) b = int(input()) if (b % a) == 0: counter = b // a else: counter = (b // a ) + 1 print(counter)