savings = int(input("enter the number of savings")) print ("starting value: ", savings) print ("after one year: ", savings * 1.05) savings = savings * 1.05 print ("after two years: ", savings * 1.05) print ("after three years: ", savings * 1.1) print ("after four years: ", savings * 1.15) print ("after five years: ", savings * 1.2) print ("after six years: ", savings * 1.25) print ("after seven years: ", savings * 1.3) print ("after eight years: ", savings * 1.35) print ("after nine years: ", savings * 1.4) print ("after ten years: ", savings * 1.45)