a, b = map(int, input().split()) count = 0 x = 0 while True : x+=1 if a*x < b : count+=1 else : print (count) break