l = raw_input().split(' ') li = map(int, l) a = li[0] b = li[1] if b % a == 0: print(str(b / a)) else: print(str(int(b / a) + 1))