Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # put your python code here
- amount = int(input())
- growth_percent = int(input()) * 0.01
- days = int(input())
- for day in range(days):
- print(day + 1, amount)
- amount *= (1 + growth_percent)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement