using System;
public class Program
{
public static void Main()
int x, i;
x = 10;
for (i = 2; i <= 10; i++)
Console.WriteLine(x);
x = x + 2;
}