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