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