using System;
public class Program
{
public static void Main()
//Declaration
int counter;
Console.WriteLine();
for ( counter = 10 ; counter <= 20; counter = counter + 2)
Console.WriteLine( counter + " ");
}
}// end class
}// end main