using System;
public class Program
{
public static void Main()
bool? a = null, b = true;
bool eval = a != b;
Console.WriteLine(eval);
}