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