ippo, kyori = map(int, input().split()) shou, yo = divmod(kyori, ippo) if yo == 0: print(shou) else: print(shou + 1)