Advertisement
veronikaaa86

08. Pet Shop

Jan 8th, 2022
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. count_dog = int(input())
  2. count_cat = int(input())
  3.  
  4. price_dog = count_dog * 2.5
  5. price_cat = count_cat * 4
  6.  
  7. all_food = price_cat + price_dog
  8.  
  9. print(f'{all_food} lv.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement