using System;
public class Program
{
public static void Main()
int b, c;
Console.WriteLine("Ingrese un numero");
c = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Ingrese otro numero");
b = Convert.ToInt32(Console.ReadLine());
c=(c > b) ? c : b;
Console.WriteLine("El mayor d los numeros es: {0}", c);
}