using System;
public class Program
{
public static void Main()
int x, y;
//if you put a number in the Random() you create a seed that it will always pick from
Random random = new Random();
x = random.Next(20)+1;
y = random.Next(20)+1;
if(x > y)
Console.WriteLine(x + " > " + y);
}
else
Console.WriteLine(x + " < " + y);