public static void Main()
System.Console.WriteLine("Ingrese los valores a evaluar: ");
a = System.Convert.ToInt32(System.Console.ReadLine());
b = System.Convert.ToInt32(System.Console.ReadLine());
c = System.Convert.ToInt32(System.Console.ReadLine());
System.Console.WriteLine("{0} Es mayor que {1} y que {2}",a ,b ,c);
System.Console.WriteLine("{0} Es mayor que {1} y que {2}",b ,a ,c);
System.Console.WriteLine("{0} Es mayor que {1} y que {2}",c ,a ,b);