def solve(): a, p, q = map(int, input().split()) return (p + q) * (p + q) > 4 * p * q ans = "Yes" if solve() else "No" print(ans)