using System;
public class Demo
{
public static void Main(string[]args)
int st= 1; st= 5;
while(st<=5)
Console.WriteLine(st);
st++;
}