using System;
public class Program
{
public static void Main()
int i,j;
for(i=1;i<=3;i++)
for(j=3;j<=i; j++)
Console.WriteLine(j) ;
}