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("400 300"); //TATE //縦の長さが400、横の長さが300である。 //「縦の長さ:横の長さ」の比率が「4:3」であるので //これは縦型である。 } else if (InputPattern == "Input2") { WillReturn.Add("540 720"); //YOKO //横型です } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { List InputList = GetInputList(); long[] wkArr = InputList[0].Split(' ').Select(X => long.Parse(X)).ToArray(); long H = wkArr[0]; long W = wkArr[1]; //H:W = 3:4 ⇔ 3W=4H if (3 * W == 4 * H) Console.WriteLine("YOKO"); //H:W = 4:3 ⇔ 4W=3H if (4 * W == 3 * H) Console.WriteLine("TATE"); } }