#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll n;
  cin>>n;
  bool b=false;
  for(ll i=1;i<=1000000;i++){
    if(i*i*i==n) b=true;
  }
  
  if(b) cout<<"Yes"<<endl;
  else cout<<"No"<<endl;
  
  
  
  
    
  return 0;
}