#include using namespace std; int main(){ int a, b, c, temp; scanf("%d %d %d", &a, &b, &c); if(b > c){ temp = c; c = b; b = temp; } for(int i = 1; i < b + c - a; ++i){ for(int j = max(1, c - a - i + 1); j < b + c - a - i; ++j){ temp = c * c * j * (j + a); temp -= b * b * i * (i + a); if(temp == 0){ printf("Yes\n"); return 0; } } } printf("No\n"); }