a,b=(int(i) for i in input().split()) c=b%a if c==0: print (b//a) else: print (b//a+1)