public static void Main()
Console.WriteLine("Please enter how many numbers would you like to enter.");
string chanceString = Console.ReadLine();
int chance = int.Parse(chanceString);
Console.WriteLine("Please enter the next number.");
string numberstring = Console.ReadLine();
int number = int.Parse(numberstring);
Console.WriteLine("The total sum of the numbers is " + total + ".");
{Console.WriteLine("The calculation has ended.");}