using System;
public class Program
{
public static void Main()
int counter = 0;
while (counter < 11){
Console.WriteLine(counter);
counter++;
}