using System;
public class Program
{
public static void Main()
string test = "GD_RTS1";
string test1 = test == "GD_RTK" || test == "GD_RTS" ? "Y":"N";
Console.WriteLine(test1);
}