public static void Main()
Console.WriteLine("Give me three whole numbers.");
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
int c = int.Parse(Console.ReadLine());
Console.WriteLine("The sum of " + a + ", " + b + ", and " + c + " is " + sum + ".");