a, b = [int(x) for x in input().split()] res = 0 if b % a == 0: res = b // a else: res = b // a + 1 print(res)