inp1 = input().split() num = int(inp1[0]) aim = int(inp1[1]) if (aim % num) == 0: count = aim // num else: count = (aim // num) + 1 print(count)