using System;
public class Program
{
public static void Main()
int j = 2;
do
Console.WriteLine("j = {2}, j");
j++;
} while (j < 5);
}