using System;
public class Program
{
static bool x {get;}
public static void Main()
var y = default(bool) == x;
var z = false == x;
Console.WriteLine(x);
Console.WriteLine(y);
Console.WriteLine(z);
}