using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YukiCoder { public class Brother { public static void Main() { Dictionary BroDic = new Dictionary() { {"A",int.Parse(Console.ReadLine())}, {"B",int.Parse(Console.ReadLine())}, {"C",int.Parse(Console.ReadLine())}, }; foreach (var Value in BroDic.OrderByDescending(x => x.Value)) { Console.WriteLine(Value.Key); } } } }