using System;
public class Program
{
public static void Main()
for (int x=4; x<=12;x+=3)
Console.WriteLine(x+2);
}