using System;
public class Program
{
public static void Main()
int i =5;
while(i<10)
Console.WriteLine(i);
i++;
}