#include<bits/stdc++.h> using namespace std; int main(){ int n,num,ans=0; cin>>n; for(int i=1;i<=n;i++){ cin>>num; ans+=num; } cout<<ans; return 0; }