using System.Collections.Generic;
public static void Main()
List<int> sparkles = new List<int> { 1, 2, 3 };
List<List<int>> kaleidoscopes = new List<List<int>>();
SpinTheWheel(sparkles, new List<int>(), kaleidoscopes);
Console.WriteLine("Dazzling Combinations:");
foreach (var dazzle in kaleidoscopes)
Console.WriteLine(string.Join(", ", dazzle));
static void SpinTheWheel(List<int> sparkles, List<int> currentDazzle, List<List<int>> kaleidoscopes)