using System;
using System.Threading;
public class Program
{
public static void Main()
int increment = 0;
do
Console.WriteLine( ++ increment); //this line will be executed at least one time
Console.ReadLine();
}
while (true); //try false
Console.WriteLine("End of looping");