{"raw_statement":[{"iden":"statement","content":"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$.\n\nTwo space-separated integer values that represent $A$ and $C$ respectively.\n\nA single floating point value that represents the length of side $B$.\n\nMake sure that you are finding the length of side $B$ and not $C$(the hypotenuse).\n\n"},{"iden":"input","content":"Two space-separated integer values that represent $A$ and $C$ respectively."},{"iden":"output","content":"A single floating point value that represents the length of side $B$."},{"iden":"note","content":"Make sure that you are finding the length of side $B$ and not $C$(the hypotenuse)."}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ A, C \\in \\mathbb{R}^+ $ be the given side and hypotenuse of a right triangle, respectively.  \nLet $ B \\in \\mathbb{R}^+ $ be the unknown side to be determined.\n\n**Constraints**  \n1. $ A > 0 $, $ C > 0 $  \n2. $ A < C $ (since $ C $ is the hypotenuse)  \n3. The triangle is a valid right triangle with legs $ A $ and $ B $, and hypotenuse $ C $.\n\n**Objective**  \nCompute $ B $ using the Pythagorean theorem:  \n$$\nB = \\sqrt{C^2 - A^2}\n$$","simple_statement":"Given two sides A and C of a right triangle, where C is the hypotenuse, find the length of side B.","has_page_source":false}