import math A, B = map(int, input().split()) ans = math.ceil(B/A) print(ans)