Advertisement
ydpetkov

small_shop

Jul 19th, 2022
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. product = input()
  2. city = input()
  3. quantity = float(input())
  4.  
  5. price = 0
  6.  
  7. if city == "Sofia":
  8. if product == "coffee":
  9. price = 0.5
  10. elif product == "water":
  11. price = 0.8
  12. elif product == "beer":
  13. price = 1.2
  14. elif product == "sweets":
  15. price = 1.45
  16. elif product == "peanuts":
  17. price = 1.60
  18.  
  19. if city == "Plovdiv":
  20. if product == "coffee":
  21. price = 0.4
  22. elif product == "water":
  23. price = 0.7
  24. elif product == "beer":
  25. price = 1.15
  26. elif product == "sweets":
  27. price = 1.30
  28. elif product == "peanuts":
  29. price = 1.50
  30.  
  31. if city == "Varna":
  32. if product == "coffee":
  33. price = 0.45
  34. elif product == "water":
  35. price = 0.7
  36. elif product == "beer":
  37. price = 1.1
  38. elif product == "sweets":
  39. price = 1.35
  40. elif product == "peanuts":
  41. price = 1.55
  42.  
  43.  
  44. total_sum = quantity * price
  45.  
  46. print(total_sum)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement