Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- dog_number = int(input())
- other_animals = int(input())
- dog_food = 2.5
- other_animals_food = 4
- dog_food_price = dog_food * dog_number
- other_animal_food_price = other_animals_food * other_animals
- total = dog_food_price + other_animal_food_price
- print(total)
Advertisement
Add Comment
Please, Sign In to add comment