i = input().split() i1 = int(i[0]) i2 = int(i[1]) if i2 % i1 != 0: hosu = (i2 - i2 % i1) / i1 print(int(hosu + 1)) else: print(int(i2 / i1))