using System;
public class Program
{
public static void Main()
Int32 i;
for (i=2; i<=16; i=i+2)
Console.WriteLine(i);
}