using System; public class Hello { static void Main() { var s = Console.ReadLine().Trim(); Console.WriteLine(s[0] == s[1] ? "Yes" : "No"); } }