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

Function main

codes/cpp/Code_5_10_1.cpp:5–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected