using System;
public class Program
{
public static void Main()
int x = 10;
do
Console.WriteLine($"Value of x: {x}");
x++;
}
while (x < 20);