using System.Collections.Generic;
using System.Threading.Tasks;
static void Main(string[] args)
int pocetSlov = Convert.ToInt32(Console.ReadLine());
int[] vylosovane = new int[pocetSlov];
for (int i = 0; i < pocetSlov; i++)
Random rnd = new Random();
int indexSlova = rnd.Next(0, pocetSlov);
vylosovane[i] = indexSlova;
if (indexSlova == vylosovane[i])