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