#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(ll i=0;i> a >> b >> c; for(i=1;i<=b+c-a-2;i++){ for(j=1;j<=b+c-a-2;j++){ int mx=max({2,b-a-c+1,c-a-b+1}); if(i+j>=mx && i+j<=b+c-a-1){ if(c*c*i*(a+i)==b*b*j*(a+j)){ cout << "Yes" << endl; return 0; } } } } cout << "No" << endl; return 0; }