public static void Main()
Console.WriteLine("Hello there!");
Console.WriteLine("Welcome to this app!");
Console.WriteLine("Please tell me your name");
name = Console.ReadLine();
Console.WriteLine("Nice that you are in our app " +name+ "!");
Console.WriteLine("Please give me a number " +name+ ".");
s = int.Parse(Console.ReadLine());
Console.WriteLine("Please give me another number " +name+ ".");
a = int.Parse(Console.ReadLine());
Console.WriteLine("Give me the one last number " +name+ ".");
m = int.Parse(Console.ReadLine());
Console.WriteLine("Please press number 1 if you want the numbers to go from highest to lowest or 0 if you want the ordered from lowest to highest");
e = int.Parse(Console.ReadLine());
Console.WriteLine("That is not an option, please start over");