#include using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #define _GLIBCXX_DEBUG #else #define Debug(...) void(0) #endif using ll = long long; #define rep(i, n) for (int i = 0; i < (n); ++i) int main() { ll n; cin >> n; for (ll x = 1; x * x * x <= n; x++) { if (x * x * x == n) { cout << "Yes" << endl; return 0; } } cout << "No" << endl; return 0; }