using System;
public class Program
{
public static void Main()
DateTimeOffset? x = null;
DateTimeOffset? y = null;
Console.WriteLine(x.Equals(y));
}