a, b = (int(i) for i in raw_input().split(' ')) tmp = b % a if tmp > 0: tmp = b // a + 1 else: tmp = b // a print tmp