#include #include #include #include #include using namespace std; int main() { int n; cin >> n; vector a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } long long int ans=0; /* Enter your code here. Print output to STDOUT */ for(int i=0;i temp1; vector temp2; for(long long int j=2;j*j<=x;j++) { if(x%j==0) { if(x/j == j) { temp1.push_back(j); } else { temp1.push_back(j); temp2.push_back(x/j); } } } // cout<