using System;
public class Program
{
public static void Main()
for (int count = 0; count <= 100; count ++)
if (count % 2 == 0)
Console.WriteLine (count);
}