霖陆 • 6个月前
using namespace std; int main() {
int a,g,s,b; cin>>a; g=a%10; s=(a/10)%10; b=a/100; if(pow(b,3)+pow(s,3)+pow(g,3)==a) cout<<"YES"; else cout<<"NO"; return 0;
}
评论:
请先登录,才能进行评论