using System;
public class Program
{
public static void WithParams(params int[] arr) {
for (int i = 0; i < arr.Length; i++) {
Console.Write(arr[i] + " ");
}
Console.WriteLine();
}
static void Main() {
WithParams(5, 7, 0, 2, 1);
}
}
/*
run
5 7 0 2 1
*/