using System;
public class Program
{
public static void Main()
//1. Ask the user how many numbers they would like to add up. Ask the user for the numbers and tally them up. At the end give them the total and the average.
int numbers; int total;
Console.WriteLine("how many numbers do you want add up");
numbers = Convert.ToInt32(Console.ReadLine());
for (int i = 1; i <= numbers; i++) {
total = total + Convert.ToInt32(Console.ReadLine());
}