public static void Main()
Console.WriteLine ( "Hello! Welcome the user to ORDER MY NUMBERS." );
Console.WriteLine ("What's 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 one more number " );
z = int.Parse(Console.ReadLine());
Console.WriteLine( " Write 0 if you want the numbers ordered from lowest to highest or press 1 if ypu want them from higher to lowest. " );
q = int.Parse(Console.ReadLine());
if (q ==1 && x > y && x > z && y > z && z < x && z < y)
else if (q ==1 && y > x && y > z && x > z && z < x && z < y)
else if (q ==1 && z > y && z > x && y > x && x < y && x < z)
else if (q ==1 && x > y && x > z && z > y && y < x && y < z)
else if ( q ==1 && y > x && y > z && z > x && x < z && x < y)
else if (q ==1 && z > y && z > x && x > y && y < z && y < z)
else if (q ==0 && x < y && x < z && y < z && z > x && z > y)
else if ( q ==0 && y < x && y < z && x < z && z > x && z > y)
else if (q ==0 && z < y && z < x && y < x && x > y && x > z)
else if (q ==0 && x < y && x < z && z < y && y > x && y > z)
else if (q ==0 && y < x && y < z && z < x && x > z && x > y)
else if (q ==0 && z < y && z < x && x < y && y > z && y > z)
Console.WriteLine("Please start again");