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