using System;
class Programmer { }
class FPFanboy : Programmer { }
class OONerd : Programmer { }
public class Program
{
public static void Main()
var x = new Random().Next() < 0.5 ? new FPFanboy() : new OONerd();
Console.WriteLine("Hello World");
}