using System;
public class Program
{
public static void Main()
var arr = new[] {1,2,3};
foreach(var a in arr)
Console.WriteLine(a);
}