num=int(input("How Much money is in your account: ")) yone=num + ((num/100)*5) ytwo=yone + ((yone/100*5)) ythree=ytwo + ((ytwo/100)*5) yfour=ythree+((ythree/100)*5) yfive=yfour+((yfour/100)*5) ysix=yfive+((yfive/100)*5) yseven=ysix+((ysix/100)*5) yeight=yseven+((yseven/100)*5) ynine=yeight+((yeight/100)*5) yten=ynine+((ynine/100)*5) print("Starting Value: ",num) print("After one year: ",yone) print("After two years: ",ytwo) print("After three years",ythree) print("...") print("after Ten years: ",yten)