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