write a C++ program that calculates and displays the yearly amount available if RM1000 is invested in a bank account for 10 year.Your program should display the amount available for interest rates from 6 percent to 12 percent, inclusive, in 1 percent increments.Use a nested loop, with the outer loop having a fixed count of 7 and the inner loop a fixed count of 10.The first iteration of the outer loop should use the interest rate of 6 percent and display the amount money available at the end of the first 10 years.In each subsequent pass through the outer loop, the interest rate should be increase by 1 percent.Use relationship that the money available at the end of each year equals the amount of money in the account at the start of the year plus the interest rate time the amount available at the start of the year.How to do this program..???I dont't know how to do this program....