using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string[] arr = new string[]
{
"c#",
"c",
"c++",
"java",
"python",
};
foreach (string s in arr)
{
Console.Write(s.PadRight(13));
Console.WriteLine("yes");
}
}
}
}
/*
run:
c# yes
c yes
c++ yes
java yes
python yes
*/