| CodeRams Practice Problem Archive |
|---|
| Finished |
For this problem, you will be given two side lengths of a triangle and will be required to determine the length of the other side. You can assume that all input will be provided for a valid right triangle. The two side lengths you will be given correspond to the common variables $$$A$$$ and $$$C$$$, meaning one side and the hypotenuse. You should then output the length of side $$$B$$$.
Two space-separated integer values that represent $$$A$$$ and $$$C$$$ respectively.
A single floating point value that represents the length of side $$$B$$$.
9 10
4.358898943540674
Make sure that you are finding the length of side $$$B$$$ and not $$$C$$$(the hypotenuse).
| Name |
|---|


