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