savings = int(input("Enter the value of the savings: "))

print ("starting value:", savings)
print ("after 1 year", savings * 1.05)
print ("after 2 years", savings * 1.05 *1.05)
print ("after 3 years", savings * 1.05 *1.05 *1.05)
print ("after 4 years", savings * 1.05 *1.05 *1.05 *1.05)
print ("after 5 years", savings * 1.05 *1.05 *1.05 *1.05 *1.05)
print ("...")
print ("after compunding for 10 years yur saving will be", savings * 1.05 *1.05 *1.05 *1.05 *1.05 *1.05 *1.05 *1.05 *1.05 *1.05)