using System;
public class Program
{
public static void Main()
int i = 3;
while (i <= 30)
Console.WriteLine(i);
i += 3;
}