文件目录

#include <iostream>
#include <cmath>
using namespace std;
int main()
{
    int n;
    cin >> n;
    int x = cbrt(n);
    if (x * x * x == n)
        cout << "Yes";
    else
        cout << "No";
    return 0;
}