#include <iostream>
using namespace std;
int v[1000000];
int main() {
for(int i = 1; i <= 1000000; i++)
for(int j = 2 * i; j <= 1000000; j = j + i)
v[j] = v[j] + i;
for(int i = 1; i <= 1000000; i++)
if ( v[i] == i)
cout << i << " ";
return 0;
}
Daca nu iti este clar ce face programul, anunta-ma si iti explic