using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
List<string> textValues = new List<string>();
textValues.Add("610");
textValues.Add("650");
textValues.Add("680");
Console.WriteLine(string.Join(",", textValues));
}