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