Advertisement
Spocoman

Change Bureau

Jan 5th, 2022 (edited)
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. bitcoin = int(input())
  2. yuan = float(input())
  3. commission = float(input())
  4.  
  5. total = (bitcoin * 1168 + yuan * 0.15 * 1.76) / 1.95 * (100 - commission) / 100
  6.  
  7. print(f'{total:.2f}')
  8.  
  9. ИЛИ ЛЕКО ТАРИКАТСКАТА:)
  10.  
  11. print(f'{(int(input()) * 1168 + float(input()) * 0.15 * 1.76) / 1.95 * (100 - float(input())) / 100:.2f}')
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement