import math a, b= map(int, input().split()) ans = math.ceil(float(b) / a) print(ans)