savings = int(input('Enter the value of the savings: ')) years = 1 print('Starting value:', savings) while years != 11: savings = savings * 1.05 print('After', years,'years:', savings) years = years + 1