Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- deposit_amount = float(input())
- months = int(input())
- annual_rate = float(input())
- per_year = deposit_amount * annual_rate / 100
- per_month = per_year / 12
- total_sum = deposit_amount + months * per_month
- print(total_sum)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement