using System;
public class Program
{
public static void Main()
int i=0;
while(i<5)
int j=3;
while(j<6)
Console.WriteLine(i+""+j);
j++;
}i++;
}