public static void Main()
Console.WriteLine("Welcome to ORDER MY NUMBERS");
Console.WriteLine("What´s your name?");
lol = Console.ReadLine();
Console.WriteLine("Nice to meet you, " + lol + "!");
Console.WriteLine("Write a number");
x = int.Parse(Console.ReadLine());
Console.WriteLine("Write another number");
y= int.Parse(Console.ReadLine());
Console.WriteLine("Write one more number");
z = int.Parse(Console.ReadLine());
Console.WriteLine("Write 0 if you want the numbers written from lowest to highest or press 1 if you want them from highest to lowest.");
l = int.Parse(Console.ReadLine());
else if( x<= z && z <= y )
Console.WriteLine(" That wasn’t an option and you most start again");