a,b = map(int,input().split()) cnt = b//a c = b % a if c: print(cnt+1) else: print(cnt)