public static void Main()
int cant1 = 0, cant2 = 0, cant3 = 0;
Console.Write("Inserte cantidad 1 : ");
cant1 = int.Parse(Console.ReadLine());
Console.Write("Inserte cantidad 2 : ");
cant2 = int.Parse(Console.ReadLine());
Console.Write("Inserte cantidad 3 : ");
cant3 = int.Parse(Console.ReadLine());
if (cant1 > cant2 > cant1> cant3)
Console.WriteLine(" La cantidad mayor sera 1 ");
else if (cant2 > cant1 > cant2 > cant3)
Console.WriteLine(" La cantidad 2 será la mayor de las 3 ");
else if (cant3 > cant1 > cant3 > cant2)
Console.WriteLine (" La cantidad 3 es la mayor de todas ");
Console.WriteLine("Fin del codigo");