Advertisement
ydpetkov

vegetable_market

Jul 13th, 2022
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. vegetable_price_1kg = float(input())
  2. fruits_price_1kg = float(input())
  3. all_vegetable_kg = int(input())
  4. all_fruits_kg = int(input())
  5.  
  6. all_vegetable_kg = all_vegetable_kg * vegetable_price_1kg
  7. all_fruits_kg = all_fruits_kg * fruits_price_1kg
  8.  
  9. income_all = all_vegetable_kg + all_fruits_kg
  10.  
  11. print(f'{income_all / 1.94:.2f}')
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement