Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- product = input()
- city = input()
- quantity = float(input())
- order_price = 0
- if city == 'Sofia':
- if product == 'coffee':
- order_price = quantity * 0.50
- elif product == 'water':
- order_price = quantity * 0.80
- elif product == 'beer':
- order_price = quantity * 1.20
- elif product == 'sweets':
- order_price = quantity * 1.45
- elif product == 'peanuts':
- order_price = quantity * 1.60
- elif city == 'Plovdiv':
- if product == 'coffee':
- order_price = quantity * 0.40
- elif product == 'water':
- order_price = quantity * 0.70
- elif product == 'beer':
- order_price = quantity * 1.15
- elif product == 'sweets':
- order_price = quantity * 1.30
- elif product == 'peanuts':
- order_price = quantity * 1.50
- elif city == 'Varna':
- if product == 'coffee':
- order_price = quantity * 0.45
- elif product == 'water':
- order_price = quantity * 0.70
- elif product == 'beer':
- order_price = quantity * 1.10
- elif product == 'sweets':
- order_price = quantity * 1.35
- elif product == 'peanuts':
- order_price = quantity * 1.55
- print(order_price)
Advertisement
Add Comment
Please, Sign In to add comment