Help me please! T.T
1. Have the user input a semi-annual salary raise âsemi_annual_raiseâ (as a decimal percentage). 2. After the 6âtâhâ âmonth, increase your salary by that percentage. Do the same after the 12âtâh month, the 18ââthâ âmonth, and so on. Write a program to calculate how many months it will take you save up enough money for a down payment. LIke before, assume that your investments earn a return of ârâ = 0.04 (or 4%) and the required down payment percentage is 0.25 (or 25%). Have the user enter the following variables: 1. The starting annual salary (annual_salary) 2. The percentage of salary to be saved (portion_saved) 3. The cost of your dream home (total_cost) 4. The semi-âannual salary raise (semi_annual_raise) Hints To help you get started, here is a rough outline of the stages you should probably follow in writing your code: â Retrieve user input. â Initialize some state variables. You should decide what information you need. Be sure to be careful about values that represent annual amounts and those that represent monthly amounts. â Be careful about when you increase your salary â this should only happen âafterâ the 6âtâhâ,ââ 12âtâhââ, 18âtâh âmonth, and so on. Try different inputs and see how quickly or slowly you can save enough for a down payment. âPlease make your program print results in the format shown in the test cases below. Test Case 1 >>> Enter your starting annual salary:â 120000 Enter the percent of your salary to save, as a decimal:â .05 Enter the cost of your dream home: â500000 Enter the semiâannual raise, as a decimal:â .03 Number of months:â 142