savings = int(input("Enter the value of the savings:")) print ("starting value:", savings ) print ("after 1 years:", savings* 1.05 ) print ("after 2 years:", savings* 1.05* 1.05 ) print ("after 3 years:", savings* 1.05* 1.05* 1.05) print ("after 4 years:", savings* 1.05* 1.05* 1.05* 1.05) print ("after 5 years:", savings* 1.05* 1.05* 1.05* 1.05* 1.05) print ("...") print ("after 10 years of coumpounding:", savings* 1.05* 1.05* 1.05* 1.05* 1.05* 1.05* 1.05* 1.05* 1.05* 1.05)