Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Първо решение:
- money = float(input())
- month = float(input())
- percent = float(input())
- monthPercent = money * percent / 1200
- total = money + month * monthPercent
- print(total)
- Второ решение:
- money = float(input())
- month = int(input())
- percent = float(input())
- print(money + month * money * percent / 1200)
- Тарикатско решение:)
- money = float(input())
- print(money + int(input()) * money * float(input()) / 1200)
Add Comment
Please, Sign In to add comment