// #pragma GCC target("avx2") // #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") #include #define rep(i,n) for (int i = 0; i < (n); ++i) #define all(a) a.begin(), a.end() #define sz(x) x.size() #define yn(p) cout << (p?"Yes":"No") << endl; using namespace std; using uint = unsigned int; using ll = long long; using ull = unsigned long long; using P = pair; #define Pr pair #define Tp tuple using Graph = vector>; const int INF = 1000000000; const int MOD = 1000000007; const ll llINF = 1000000000000000000; #include using namespace atcoder; using mint = modint1000000007; using mint2 = modint998244353; /** #include using lll = boost::multiprecision::cpp_int; **/ void solve() { ll n; cin >> n; bool ans = false; for (ll i = 1; i <= 1000000; ++i) { if (i * i * i == n) { ans = true; } } if (ans) cout << "Yes" << endl; else cout << "No" << endl; } int main() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(15); solve(); return 0; }