Advertisement
GalinaKG

Untitled

May 10th, 2022
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. product = input()
  2. city = input()
  3. quantity = float(input())
  4. price = 0;
  5.  
  6. if city == 'Sofia':
  7. if product == 'coffee':
  8. price = quantity * 0.50
  9. elif product == 'water':
  10. price = quantity * 0.80
  11. elif product == 'beer':
  12. price = quantity * 1.20
  13. elif product == 'sweets':
  14. price = quantity * 1.45
  15. else:
  16. price = quantity * 1.60
  17. elif city == 'Plovdiv':
  18. if product == 'coffee':
  19. price = quantity * 0.40
  20. elif product == 'water':
  21. price = quantity * 0.70
  22. elif product == 'beer':
  23. price = quantity * 1.15
  24. elif product == 'sweets':
  25. price = quantity * 1.30
  26. else:
  27. price = quantity * 1.50
  28. else:
  29. if product == 'coffee':
  30. price = quantity * 0.45
  31. elif product == 'water':
  32. price = quantity * 0.70
  33. elif product == 'beer':
  34. price = quantity * 1.10
  35. elif product == 'sweets':
  36. price = quantity * 1.35
  37. else:
  38. price = quantity * 1.55
  39.  
  40. print(price)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement