Advertisement
hristo256

small_shop

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