import math coin, price = map(int, input().split()) # print(math.ceil(price/coin)) print((price + coin - 1) // coin)