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