a,b=map(int,input().split()) c=0 while 1: if b<=0: break else: b=b-a c+=1 print(c)