public static void Main()
Console.WriteLine("ORDER MY NUMBERS");
Console.WriteLine("What is your name?");
name = Console.ReadLine();
Console.WriteLine("Nice to meet you " + name);
Console.WriteLine("Write a number");
x = int.Parse(Console.ReadLine());
Console.WriteLine("Write another number");
y = int.Parse(Console.ReadLine());
Console.WriteLine("Write another number");
z = int.Parse(Console.ReadLine());
Console.WriteLine("Write 0 if you want the numbers ordered from lowest to highest or press 1 if you want them from highest to lowest");
low = int.Parse(Console.ReadLine());
Console.WriteLine("That is not an option, you must try again");