using System.Collections.Generic;
private static List<string> inputStrings = new List<string>() {
"a", "ab", "abc", "abcd", "abcde", "abcdef"
public static void Main()
foreach (var even in GetEven())
Console.WriteLine("oops.");
public static IEnumerable<string> GetEven()
var outputStrings = new List<string>();