Advertisement
Spocoman

01. USD to BGN

Nov 30th, 2021
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. Първо решение:
  2.  
  3. usd = float(input())
  4. bgn = usd * 1.79549
  5. print(bgn)
  6.  
  7. Второ решение:
  8.  
  9. usd = float(input())
  10. print(usd * 1.79549)
  11.  
  12. Тарикатско решение:)
  13.  
  14. print(float(input()) * 1.79549)
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement