fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C/C++.
  5. Code, Compile, Run and Debug online from anywhere in world.
  6.  
  7. *******************************************************************************/
  8. #include <iostream>
  9. using namespace std;
  10. int main()
  11. { int n,s;
  12. cin>>n;
  13. for(int i=1;i<=n;i++)
  14. s=s+i;
  15. cout<<s;
  16.  
  17.  
  18.  
  19.  
  20. return 0;
  21. }
  22.  
  23.  
  24.  
Success #stdin #stdout 0.01s 5300KB
stdin
7
stdout
28