//丹阳新区实小路彦
#include <bits/stdc++.h>
using namespace std;
const int N = 110;
int n;
int a[N];
bool st[20010];
int main()
{
cin >> n;
for (int i = 0; i < n; i++)
cin >> a[i];
for (int i = 0; i < n; i++)
for (int j = 0; j < i; j++)
st[a[i] + a[j]] = true;
int res = 0;
for (int i = 0; i < n; i++)
res += st[a[i]];
cout << res << endl;
return 0;
}