using System.Collections.Generic;
public static class Program
public static void Main()
private CardColor Color {get;set;}
private CardValue Value {get;set;}
public void Initiate(CardColor color, CardValue value)
public string GetDisplay()
return $"{Value} of {Color}";
private List<Card> Cards {get;set;}
throw new NotImplementedException();
public string GetDisplay()
throw new NotImplementedException();
for(int i = 0; i<= 52; i++)