using System;
public class Program
{
public static void Main()
Random rnd = new Random();
int a;
a = rnd.Next(10, 100);
Console.WriteLine("Number={0} \n tens= {1} \n units={2} \n reverse= {3}", a, (a / 10 % 10), (a % 10), (a%10*10)+((a / 10 % 10)));
}