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