using System;
public class Program
{
public static void Main()
object thing = null;
Console.WriteLine(string.Format("Woo {0}", thing));
Console.WriteLine(string.Format("Woo {0}, {1}", thing, thing));
Console.WriteLine(string.Format("Woo {0}, {1}, {2}", thing, thing, thing));
}