interest_per_year = 0.0375 # 3.75% yearly interest

# transform interest per year to interest per month
interest_per_month = (interest_per_year + 1) ** (1/12) - 1
print(interest_per_month)
money = 0

for month in range(12*5): # for each of 12 months in each of 5 years
	money = money + 50 # you add 50 dollars each month
	money = money * (interest_per_month + 1)
	
print(money)