using System.Collections.Generic;
private void Main(string[] args)
Console.WriteLine("Please call this program with three arguments");
int result = Calculate(args[1], args[2], args[3]);
Console.WriteLine("The last argument is larger than the sum of the first two", result);
Console.WriteLine("The last argument is not larger than the sum of the first two", result);
int Calculate(int a, long b, int c)