using System;
public class HelloWorld
{
public static void Main()
{
List<Poker> pokerList = new List<Poker>();
string[] tps = ["♠","♥","♦","♣"];
string[] index = ["1","2","3","4","5","6"];
}
class Poker{
int size;
string types;
public Poker(int size,string t){
this.size=size;
this.types = t;
}
}
}