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("yes".PadRight(10));
Console.WriteLine(s.PadLeft(8));
}
}
}
}
/*
run:
yes c#
yes c
yes c++
yes java
yes python
*/