Pythagorean Théorème Calc: Trouver C, a = n

Solving for c

a^2 + b^2 = c^2

// a - leg
// b - leg


a = 3;
b = 2;

// 3.60555
Amused Ape