a, b = map(int, input().split()) count = 0 for x in range(0,1000): if a*x < b : count+=1 else : print (count) break