A, B = map(int, input().split()) if B % A == 0: ans = B // A else: ans = B // A + 1 print(ans)