a, b = input().split(" ") a = int(a) b = int(b) remainder = b % a if remainder != 0: print(int(b / a + 1)) elif remainder == 0: print(int(b / a))