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