a, p, q = map(int, input().split()) b = a * ((0 - p) + (0 - q)) c = a * (0 - p) * (0 - q) if b * b > 4 * a * c: print("Yes") else: print("No")