#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; const double EPS=1e-2; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); ll a,b,c; cin>>a>>b>>c; for(ll x=1;x=b+c) continue; ll ee,ff; ee=((a+y)*(a+y)+c*c)*t-(a+y)*(c*c+t*t-b*b); ff=((a+x)*(a+x)+b*b)*t-(a+x)*(b*b+t*t-c*c); if(c*c*ff*(b*b*t+ee-x*x*t)*(b*b*t+ee-x*x*t)==b*b*ee*(c*c*t+ff-y*y*t)*(c*c*t+ff-y*y*t)){ cout<<"Yes\n"; return 0; } } } cout<<"No\n"; return 0; }