Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp1
- {
- class Program
- {
- static void Main(string[] args)
- {
- int forDogs = int.Parse(Console.ReadLine());
- int forCats = int.Parse(Console.ReadLine());
- Console.WriteLine($"{forDogs * 2.5 + forCats * 4} lv.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement