using System;
public class Program
{
public static void Main()
// initialize the counter
int number = 1;
// continue to print the counter until it's 10
while (number < 11)
Console.WriteLine(number);
number++;
}