inp = raw_input() nums = inp.split() a = int(nums[0]) b = int(nums[1]) if b % a == 0: print b/a else: print b/a + 1