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