using System;
public class Program
{
public static void Main()
// N NUMEROS Y DECIR CUAL MAYOR Y CUAL MENOR
int i,ma=0,me=0,nu;
int md=0;
for (i=1; i<=3; i ++)
Console.WriteLine("DAME UN NUMERO: ");
nu= Convert.ToInt32(Console.ReadLine());
if (i==1)
me=nu;
md=nu;
}
if (nu>=ma)
ma=nu;
if (nu<=me)
if (me<=md && md>=ma)
Console.WriteLine("EL NUMERO MAYOR ES: "+ma);
Console.WriteLine("EL NUMERO MEDIO ES: "+md);
Console.WriteLine("EL NUMERO MENOR ES: "+me);