using System; using System.Collections.Generic; using System.Text; using System.Linq; class Program { public void Proc() { string[] inpt = Reader.ReadLine().Split(' ').ToArray(); int redCount = inpt.Count(a=>a.Equals("RED")); string ans = "BLUE"; if (redCount > inpt.Length / 2) { ans = "RED"; } Console.WriteLine(ans); } public class Reader { public static bool IsDebug = false; private static String PlainInput = @" RED RED BLUE "; private static System.IO.StringReader Sr = null; public static string ReadLine() { if (IsDebug) { if (Sr == null) { Sr = new System.IO.StringReader(PlainInput.Trim()); } return Sr.ReadLine(); } else { return Console.ReadLine(); } } } static void Main() { #if DEBUG Reader.IsDebug = true; #endif Program prg = new Program(); prg.Proc(); } }