#include #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); int n,z; cin >> n >> z; if(n == 1) { cout << (z != 1 ? "Yes" : "No") << endl; } else if(n == 2) { for(int x = 1; x <= 1000; x++) { for(int y = 1; y <= 1000; y++) { if(x * x + y * y == z * z) { cout << "Yes" << endl; return 0; } } } cout << "No" << endl; } else { cout << "No" << endl; } }