start = float(input(("Enter the value of the savings: "))) print("Starting value:", start) for i in range(1, 11): print("After", i, "years:", round(start * (1.05 ** i), 2))