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