using System.Collections.Generic;
public static void Main()
List<char> codes = new() { '1', 'a', 'b', 'c', '2', };
List<char> numbers = new() { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
foreach (char code in codes)
foreach (char element in numbers)
Console.WriteLine($"{code}");