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