x=int(input("Enter the value of the savings: ")) print("Starting value:",x) for number in range(10): x=x/20+x print("After", number+1, "years:", x)