using System; using System.Collections.Generic; using System.Linq; using System.Text; class Program { static void Main() { var str = Console.ReadLine(); if(str.Length == 2) { Console.WriteLine("Yes"); } else { Console.WriteLine("No"); } } }