#include <iostream> using namespace std; int main() { int n; cin>>n; bool b; for(int i=1;i<=n;i++) { if(i*i*i==n) { b=true; } } if(b==true) { cout<<"Yes"; }else cout<<"No"; return 0; }
(无助的我)