| 3 | using namespace std; |
| 4 | |
| 5 | int main() { |
| 6 | long long a, b, c; |
| 7 | cin >> a >> b >> c; |
| 8 | if (sqrt(a) + sqrt(b) < sqrt(c)) cout << "Yes" << endl; |
| 9 | else cout << "No" << endl; |
| 10 | return 0; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected