Advertisement
smatskevich

Summ1

Feb 20th, 2021
669
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main() {
  4.   int n = 0;
  5.   std::cin >> n;
  6.  
  7.   int sum = 0;
  8.   int i = 0;
  9.   while (i < n) {
  10.     int tmp;
  11.     std::cin >> tmp;
  12.     sum += tmp;
  13.     ++i;
  14.   }
  15.   std::cout << sum;
  16.  
  17.   return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement