Problem:
AcCode:
public class Main{
public static void main(String[] args) {
for(int i = 153;i<1000;i++) {
int bw = i/100;
int sw = (i/10)%10;
int gw = i%10;
if(Math.pow(bw, 3)+Math.pow(sw, 3)+Math.pow(gw, 3)==i) {
System.out.println(i);
}
}
}
}