#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int,int>;
const int N = 1e2+10;
int t,n,m,k,l,r,op,x,y,a;
int f[N];
void solve(){
cin>>n;
for(int i = 1;i<=n;i++){
cin>>a;
f[0] = 1;
for(int j = 40;j>=a;j--){
f[j] = f[j] + f[j-a];
}
}
cout<<f[40];
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}