#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int,int>;
int t,n,m,k,l,r,op,x,y;
int f(int x){
int cnt = 0;
t = sqrt(x);
for(int i = 1;i<=t;i++){
if(x%i==0){
cnt++;
if((x/i)*(x/i)!=x)cnt++;
}
}
return cnt;
// 2*2*3
// 1
// 2 3
// 4 6
// 12
// 12
// 1 2 3
// 4 6 12
}
void solve(){
cin>>n;
while(n--){
cin>>x;
cout<<f(x)<<"\n";
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}