Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Best_Player
- {
- class Program
- {
- static void Main(string[] args)
- {
- int food = int.Parse(Console.ReadLine());
- double grams = food * 1000;
- int totalFood = 0;
- while(true)
- {
- string line = Console.ReadLine();
- if (line == "Adopted")
- {
- break;
- }
- else
- {
- totalFood += line;
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement