{"raw_statement":[{"iden":"problem statement","content":"You are given integers $A$, $B$, and $C$.  \nDetermine whether $A^2 + B^2 < C^2$ holds."},{"iden":"constraints","content":"*   $0 \\le A \\le 1000$\n*   $0 \\le B \\le 1000$\n*   $0 \\le C \\le 1000$\n*   $A$, $B$, and $C$ are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$A$ $B$ $C$"},{"iden":"sample input 1","content":"2 2 4"},{"iden":"sample output 1","content":"Yes\n\nSince $A^2 + B^2 = 2^2 + 2^2 = 8$ and $C^2 = 4^2 = 16$, we have $A^2 + B^2 < C^2$, so we should print `Yes`."},{"iden":"sample input 2","content":"10 10 10"},{"iden":"sample output 2","content":"No\n\nSince $A^2 + B^2 = 200$ and $C^2 = 100$, $A^2 + B^2 < C^2$ does not hold."},{"iden":"sample input 3","content":"3 4 5"},{"iden":"sample output 3","content":"No"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}