A=int(eval(input())) B=int(eval(input())) i=1 while True: if(A*i>=B): break i+=1 print(i)