using System; public class Test { public static void Main() { object x = 1; object y = 1; Console.WriteLine(x == y ? "OK" : "NG"); } }