What is the value of i the first time the while condition is…

What is the value of i the first time the while condition is executed at the end of the following do-while loop?decimal monthlyInterestRate = .01m;int months = 10;decimal futureValue = 1000m;int i = 1;do{    futureValue = futureValue * (1 + monthlyInterestRate);    i++;}while (i < months);