def hajimeno(a, b): if b % a == 0: return b // a else: return (b // a) + 1 hohaba = int(input()) kyori = int(input()) print(hajimeno(hohaba, kyori))