using System; using System.Collections.Generic; using System.Linq; // https://yukicoder.me/problems/no/1591 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(); long N = long.Parse(InputList[0]); if (10 <= N && N <= 99) { Console.WriteLine("Yes"); } else { Console.WriteLine("No"); } //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(); } }