using System;
public class Program
{
//2. Write a program in C# Sharp to display the even numbers in the first 100 natural numbers. Expected Output : 2 4 6 8 10 ... ..... 98 100
public static void Main()
for (int i = 1; i <= 100; i++)
if (i % 2 == 0)
Console.WriteLine(i);
}