#include <iostream>
#include <iomanip>

using namespace std;

int main() {
	double starting;
	double increasePCT = 0.04;
	
	starting = 2500;
	
	cout << fixed << setprecision(2);
	for (int i = 1; i <= 6 ; i++)
	{
		cout << "The membership rate on the year num : " << i ;
		cout << " is $" << starting << endl;
		
		starting += starting * increasePCT;
	}
	// your code goes here
	return 0;
}