public static void Main()
Console.WriteLine("Hello World");
Random rnd = new Random();
int zufall = rnd.Next(1, 101);
Console.WriteLine(zufall);
while (userInput != zufall)
userInput = int.Parse(Console.ReadLine());
if (userInput < zufall) {Console.WriteLine("Zahl ist zu klein");}
else if (userInput > zufall) {Console.WriteLine("Zahl ist zu groß");}
else {Console.WriteLine (" Treffer");}