using namespace std; int main() { int n; cin >> n; int t = sqrt(n); if (t*t==n) cout << "Yes"; else cout << "No"; return 0; }