Advertisement
gen4i4

Untitled

Mar 14th, 2022
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. town = input()
  2. sales = float(input())
  3.  
  4. commission = 0
  5.  
  6. if 0 <= sales <=500:
  7. if town =='Sofia':
  8. commission = 0.05
  9. elif town == 'Varna':
  10. commission = 0.045
  11. elif town == 'Plovdiv':
  12. commission = 0.055
  13.  
  14. elif 500 < sales <=1000:
  15. if town == 'Sofia':
  16. commission = 0.07
  17. elif town == 'Varna':
  18. commission = 0.075
  19. elif town == 'Plovdiv':
  20. commission = 0.08
  21.  
  22. elif 1000 < sales <= 10000:
  23. if town == 'Sofia':
  24. commission =0.08
  25. elif town == 'Varna':
  26. commission = 0.10
  27. elif town == 'Plovdiv':
  28. commission = 0.12
  29.  
  30. elif sales > 10000:
  31. if town == 'Sofia':
  32. commission = 0.12
  33. elif town == 'Varna':
  34. commission = 0.13
  35. elif town == 'Plovdiv':
  36. commission = 0.145
  37.  
  38. if commission == 0 or (town != 'Sofia' and town !='Plovdiv' and town != 'Varna'):
  39. print('error')
  40. else:
  41. income = sales * commission
  42. print(f'{income:.2f}')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement