using System;
public class Program
{
public static void Main()
Console.WriteLine("How many numbers would you like to sum?");
int numTimes = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter {0} numbers:", numTimes);
int numOne = Convert.ToInt32(Console.ReadLine());
}
// Sum numbers program
// Ask the user how many numbers they'd like to sum
// Ask the user to enter a number X times
// Sum the numbers and output the result
// Example:
// How many numbers would you like to sum?
// 3
// Please enter a number:
// 7
// 9
// The sum of the numbers you entered is 19.
// Bonus #1
// Instead of:
// Ask:
// Please enter #1:
// ...
// Please enter #2:
// Bonus #2
// Display the formula for the result
// 7+3+9=19