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