Advertisement
Josif_tepe

Untitled

Dec 2nd, 2023
611
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #include <iostream>
  2.  
  3.  
  4. using namespace std;
  5.  
  6.  
  7. int main()
  8. {
  9. int n;
  10. cin>>n;
  11. int sum=0;
  12. for(int i=1;i<=n;i++){
  13.         int x;
  14. cin>>x;
  15. sum+=x;}
  16. cout<<sum<<endl;
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement