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