using System;
public class Program
{
public static void Main()
// What will the result of this WriteLine be?
int[] i = new int[0];
Console.WriteLine(i[0]);
}