Prerequisites: Basic course part I
Anton is going to buy a car and is considering taking out a car loan. The interest rate is 5%. Let Anton enter how large a loan he wants to take (whole kronor) and then print how large the loan will be after each year for five years if he neither pays interest nor amortization.
If the loan is 10 000 kr is the loan after 1 year: \(10000\cdot1.05\) kr and after two years the loan is \(10000\cdot1.05\cdot1.05\) kr or \(10000\cdot1.05^2\) kr.
Use the built-in function round() to round the loan to an integer. For example, round(2.75) is equal to 3. Print the loan amount without a unit.
-- Output from your program will be here --