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