public static void Main()
Console.WriteLine("Display the n terms of even natural number and their sum");
Console.WriteLine("Enter a n term ");
int n = int.Parse(Console.ReadLine());
Console.Write("The Even Natural Number is ");
Console.WriteLine("The Sum of even Natural Number upto {0} terms {1}",n,sum);