Name your file hw6.cpp You've been asked to write the following program. Hand in pseudocode on Monday. Real code is due Friday. Read in principle (negative principle is okay). Read in values for interest rate ( input of 5.5 means 5.5%) Read in an integer number of years (less than 0 is not okay) Compute the result of this annual interest rate on the principle after this number of years. Do not use a mathematical formula, but rather a while loop. Example inputs: 100 10 0 100 10 1 100 10 2 100 10 3 Example outputs: The result of 10% interest after 0 year(s) is $100.00 The result of 10% interest after 1 year(s) is $110.00 The result of 10% interest after 2 year(s) is $121.00 The result of 10% interest after 3 year(s) is $133.10 For extra credit, force your output to look precisely as above.