using System;
public class Program
{
class Person {}
public static void Main()
Person p = new Person();
object o = null;
Console.WriteLine((Person)0);
}