#include <bits/stdc++.h>
using namespace std;
int n;
void allDIV(int x){
vector<int> res;
for(int i=1; i<=x/i; ++i){
if(x%i==0){
res.push_back(i);
if(i!=x/i) res.push_back(x/i);
}
}
sort(res.begin(), res.end());
for(auto &e: res) cout<<e<<" ";
}
int main(){
cin>>n;
int x;
while(n--){
cin>>x;
allDIV(x);
cout<<endl;
}
return 0;
}