using System.Collections.Generic;
using System.Threading.Tasks;
namespace HipotenusaTriangulo
static void Main(string[] args)
Console.WriteLine("Introduce el valor del Primer Cateto");
A = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Introduce el valor del Segundo Cateto");
B = Convert.ToInt32(Console.ReadLine());
C = (float)Math.Pow(A, 2);
D = (float)Math.Pow(B, 2);
F = (double)Math.Sqrt(E);
Console.WriteLine($"EL Valor de la hipotenusa es: {F}");