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