MCPcopy Create free account
hub / github.com/E869120/math-algorithm-book / main

Function main

codes/cpp/Code_5_10_2.cpp:4–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2using namespace std;
3
4int 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected