using System;
public class Program
{
public static void Main()
Random random = new Random();
int numero = random.Next(0, 20);
Console.WriteLine("El numero es: " + numero);
}