#yukicoder409A import sys; sys.set_int_max_str_digits(0) A,P,Q=map(int,input().split()) B,C=-(P+Q)*A,A*P*Q print('Yes' if B**2>4*A*C else 'No')