Y=1 save=float(input("Enter the value of the savings:")) print() print("Starting value:", save) grow= save * 0.05 save=save+grow while Y < 11: grow= save * 0.05 print("After", Y, "years:", save) Y=Y+1 save=save+grow