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