using System;
public class Program
{
public static void Main()
using System.IO;
using System.Linq;
using System.Collections.Generic;
namespace CSharp_Shell
public class Baralho
int[] baralho = new int[52];
Random r = new Random();
bool flag = false;
int count = 0;
int store;
for(int i = 0; i < 52; i ++){
count++;
flag = false;
while(flag == false){
store = r.Next(52);
if(baralho[store] == 0){
baralho[store] = count;
flag = true;
}
for (int j = 0; j < 52; j++){
Console.WriteLine(baralho[j] + "-")
Console.ReadLine () ;