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