Josif_tepe

Untitled

Feb 5th, 2026
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1.  
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.  
  9.    int n;
  10.    cin >> n;
  11.  
  12.     int zbir = 0;
  13.  
  14.    for(int i=1; i <= n; i++) {
  15.     int x;
  16.     cin >> x;
  17.     zbir += x;
  18.    }
  19.  
  20.     cout << zbir <<endl;
  21.  
  22.     return 0;
  23. }
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment