using System;
public class Program
{
public static void Main()
bool? miValor = null;
Console.WriteLine( (miValor ?? false) ? "True" : "False");
}