save=float(input("enter the value of the savings: ")) num=1 print("starting value:", save) while True: save=save*1.05 save=round(save,5) print("after", num, "years:", save) num=num+1 if num==11: break