public static void Main()
Console.WriteLine("Hi, welcome to the app ORDER MY NUMBERS!");
Console.WriteLine("Whats your name?");
name = Console.ReadLine();
Console.WriteLine("Nice to meet you " + name + "!");
Console.WriteLine("Please give me a number");
a = int.Parse(Console.ReadLine());
Console.WriteLine("Please give me another number");
b = int.Parse(Console.ReadLine());
Console.WriteLine("Please give me the last number");
c = int.Parse(Console.ReadLine());
Console.WriteLine("Press 0 if you want the numbers written from lowest to highest or 1 if you want from highest to lowest");
x = int.Parse(Console.ReadLine());
Console.WriteLine("That wasn’t an option, please start again");