using System;
public class Program
{
public static void Main()
string blah = default(string);
Console.WriteLine(blah ?? "See?");
}