using System;
public class Program
{
public static void Main()
int[] myNum = {10, 20, 30, 40};
Console.WriteLine(String.Join<>(",", myNum));
}