class Program
{
static void Main(string[] args)
{
//請在這里完善代碼
string[] f = new string[6] { "關羽","張飛","趙云","馬超","黃忠",""};
for (int i = 0; i < f.Length; i++)
{
Console.Write(f[i]+',');
}
}
}