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