COROANA TE ROG!!!
void subperfect(int a, int b){
for(int i=b;i>=a;i--){
int s=0;
for(int x=2;x<=i/2;x++)
if(i%x==0)
s+=x;
if(i<s)
cout<<i<<' ';
}