using System;
public class Program
{
public static void Main()
string one="apple";
string two="banana";
string three="carrot";
string four="grape";
string five="tomato";
string six="lettuce";
Console.WriteLine(one+','+two+','+three+','+four+','+five+','+six);
}