#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
vector<int> a(n);
for(int i = 0; i < n; i++){
cin >> a[i];
}
sort(a.begin(), a.end());
long long ans = 0;
int num = 1;
for(int i = 0; i < n; i++){
if(i != 0 && a[i] != a[i - 1]){
num++;
}
ans += num;
}
cout << ans << endl;
return 0;
}