include[HTML_REMOVED]
using namespace std;
typedef long long LL;
const int N=1e7+10;
LL a[N],num;
int main()
{
LL n=2021041820210418;
for(LL i=1; i<=n/i; i)
{
if(n%i==0)
{
a[num]=i;//是n的约数保存起来
if(i*i!=n)
a[num]=n/i;//如果i不是n的重复约数,则保存另一个因数;如果是就保存一个
}
}
int res=0;
for(int i=1; i<=num; i)
{
for(int j=1; j<=num; j)
{
if(n%(a[i]*a[j])==0)//三个约数中确定了两个约数则另一个一定确定了
res;
}
}
cout<<res<<endl;
return 0;
}