Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- product = input()
- city = input()
- quantity = float(input())
- price = 0
- if city == "Sofia":
- if product == "coffee":
- price = 0.5
- elif product == "water":
- price = 0.8
- elif product == "beer":
- price = 1.2
- elif product == "sweets":
- price = 1.45
- elif product == "peanuts":
- price = 1.60
- if city == "Plovdiv":
- if product == "coffee":
- price = 0.4
- elif product == "water":
- price = 0.7
- elif product == "beer":
- price = 1.15
- elif product == "sweets":
- price = 1.30
- elif product == "peanuts":
- price = 1.50
- if city == "Varna":
- if product == "coffee":
- price = 0.45
- elif product == "water":
- price = 0.7
- elif product == "beer":
- price = 1.1
- elif product == "sweets":
- price = 1.35
- elif product == "peanuts":
- price = 1.55
- total_sum = quantity * price
- print(total_sum)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement