using System;
class Program
{
static void printArray(int[] arr) {
for (int i = 0; i < arr.Length; i++ ) {
Console.Write("{0} ", arr[i]);
}
Console.WriteLine();
}
static void Main() {
int[] arr = new int[] { 4, 6, 1, 9, 3 };
printArray(arr);
}
}
/*
run:
4 6 1 9 3
*/