i=list(map(int,input().split())) w=i[0] d=i[1] if d%w==0: print(d//w) else: print((d//w)+1)