Advertisement
Guest User

Untitled

a guest
Mar 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     ios_base::sync_with_stdio(0);
  8.     cout.tie(0);
  9.     cin.tie(0);
  10.     int n;
  11.     cin>>n;
  12.     int suma=0;
  13.     for(int i=0; i<=n; i++)
  14.     {
  15.         suma+=i;
  16.     }
  17.     cout<<suma;
  18.  
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement