#include #include using namespace std; using namespace atcoder; typedef long long ll; typedef pair P; typedef modint1000000007 mint; #define rep(i,a,b) for(ll i=a;i=b;i--) const ll inf=1e12; ll n; ll e[12]; bool dfs(ll t,ll x,ll y,ll z){ if(t==n){ if(x==y&&y==z){ return true; }else{ return false; } } if(dfs(t+1,x+e[t],y,z)){ return true; } if(dfs(t+1,x,y+e[t],z)){ return true; } if(dfs(t+1,x,y,z+e[t])){ return true; } return false; } int main(void){ cin.tie(0); ios::sync_with_stdio(0); cin>>n; rep(i,0,n){ cin>>e[i]; } if(dfs(0,0,0,0)){ cout<<"Yes"<