using System;
public class Program
{
public static void Main()
object obj = null;
Console.WriteLine("is the same? " + (obj is true));
}