math = input() math = math.split() a = math[0] b = math[1] a = int(a) b = int(b) ans = b / a if b % a != 0: ans = ans + 1 print(round(ans))