using System; using System.Collections.Generic; using System.Linq; class Program { static string InputPattern = "InputX"; static List GetInputList() { var WillReturn = new List(); if (InputPattern == "Input1") { WillReturn.Add(""); } else if (InputPattern == "Input2") { WillReturn.Add(""); } else if (InputPattern == "Input3") { WillReturn.Add(""); } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { List InputList = GetInputList(); int N = int.Parse(InputList[0]); if (N < 1200) { Console.WriteLine("green"); } else { Console.WriteLine("difficult"); } //int[] wkArr = InputList[0].Split(' ').Select(pX => int.Parse(pX)).ToArray(); //int[] wkArr = { }; //Action SplitAct = pStr => // wkArr = pStr.Split(' ').Select(pX => int.Parse(pX)).ToArray(); } }