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