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