using System;
public class Program
{
public static void Main()
Random zufall = new Random();
int [] Zahl = new []
{zufall.Next(1,100),zufall.Next(1,100),zufall.Next(1,100),zufall.Next(1,100),zufall.Next(1,100),zufall.Next(1,100),zufall.Next(1,100),zufall.Next(1,100),zufall.Next(1,100),zufall.Next(1,100)};
Array.Sort(Zahl);
string Eingabezahl = Console.ReadLine();
int Suche = Int32.Parse(Eingabezahl);
if ( Suche > Zahl[4])
if (Suche > Zahl[6])
if (Suche > Zahl[8])
if (Suche == Zahl[9])
Console.WriteLine("Die Gesuchte Zahl ist an der 9. Stelle");
}