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