using System;
public class Program
{
public static void Main()
int n=1;
while(n<6)
Console.Write(n); n=n+1;
}