Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bitcoin = int(input())
- yuan = float(input())
- commission = float(input())
- total = (bitcoin * 1168 + yuan * 0.15 * 1.76) / 1.95 * (100 - commission) / 100
- print(f'{total:.2f}')
- ИЛИ ЛЕКО ТАРИКАТСКАТА:)
- print(f'{(int(input()) * 1168 + float(input()) * 0.15 * 1.76) / 1.95 * (100 - float(input())) / 100:.2f}')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement