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++; //this helps the loop to +1 everytime to its number
}