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