fork download
  1. #include "bits/stdc++.h"
  2. #define ll long long
  3. using namespace std;
  4. int main()
  5. {
  6. int n;
  7. cin>>n;
  8. ll sum=0;
  9. for(int i=0;i<n;i++)
  10. {
  11. ll temp;
  12. cin>>temp;
  13. sum+=temp;
  14. }
  15. cout<<sum<<endl;
  16. }
Success #stdin #stdout 0s 16064KB
stdin
5
1 2 3 4 5
stdout
15