i = input().split(" ") #i[0] < i[1] if i[1] % i[0] == 0: print(int(i[1] / i[0])) else: print(int(i[1] / i[0]) + 1)