using System;
public class Program
{
public static void Main()
int x=1;
while(x<=10)
{ Console.WriteLine("{0}",x);
x=x+1;
}