a, b = map(int,input().split()) calc = int(b / a) if b % a != 0: calc += 1 print(calc)