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