generated at
退職所得控除
py
def calculate_retirement_deduction(years): if years <= 20: return 400000 * years else: return 8000000 + 700000 * (years - 20)