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