#include<bits/stdc++.h> using namespace std; int main(){ int i; for(i=2;i<1000;i++) if(pow(i%10,3)+pow(i%100/10,3)+pow(i/100,3)==i) cout<<i<<" "; return 0; }