using System;
public class Program
{
public static void Main()
Console.WriteLine("This program will run until it reaches 20.");
int x = 0;
while (x < 20) {
x = x + 1;
Console.WriteLine(x);
}