#include <bits/stdc++.h>
using namespace std;
typedef int i;
typedef float f;
typedef char c;
typedef double d;
typedef bool b;
typedef unsigned long long u;
typedef long long ll;
i a[10010];
int main(){
i n;
cin>>n;
int cnt=0;
for(int i=1;i<=n;i++){
cin>>a[i];
}
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
for(int k=1;k<=n;k++){
if(a[i]+a[j]==a[k]){
cnt++;
}
}
}
}
cout<<cnt/3;
return 0;
}