using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace hipotenusa
{
class Program
{
static void Main(string[] args)
{
//ejemplo Sqrt() para calcular la longitud de una hipotenusa dadas las longitudes de los catetos
double x, y, z;
x = 3;
y = 4;
z = Math.Sqrt(x*x + y*y);
Console.WriteLine("La hipotenusa es: "+z);
Console.ReadLine();
}
}
}