public static void Main()
Console.WriteLine("Press 0: find summation of even number");
Console.WriteLine("Press 1: find summation of odd number");
Console.Write("Input your option: ");
int num = int.Parse(Console.ReadLine());
for (int i = 1; i <=100; i++)
Console.WriteLine("Summation of even is {0:n0}",sum);
for (int i = 1; i <=100; i++)
Console.WriteLine("Summation of odd is {0:n0}",sum);
Console.WriteLine("You input wrong number!");