using System;
public class Program
{
public static void Main()
string again;
do
Console.WriteLine("Again? Press any key. Otherwise enter yes.");
again = Console.ReadLine();
if (again == "yes")
Console.WriteLine();
}
while (again != "yes") ;