#define _GLIBCXX_FILESYSTEM
#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int N = 1e7+2,mod = 1e9+7;
int cnt[N];
void solve() {
int n;
cin >> n;
for(int i = 0; i < n; i++) {
int x;
cin >> x;
for(int j = 2; j * j <= x; j++) {
if(x % j == 0) {
while(x % j == 0) x /= j, cnt[j]++;
}
}
if(x > 1) cnt[x]++;
}
ll ans = 1;
for(int i = 2; i < N; i++) {
ans *= 1ll * (cnt[i]+1);
ans %= mod;
}
cout << ans;
return;
}
int32_t main() {
ios_base::sync_with_stdio(false);cin.tie(NULL);
int tc = 1;
// cin >> tc;
for(int kase = 1; kase <= tc; kase++) {
//cout << "Case " << kase << ": ";
solve();
}
return 0;
}