Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <fstream>
  2. #include <iostream>
  3. #include <cstdlib>
  4. using namespace std;
  5.  
  6. int main(){
  7.  
  8.  ifstream fin("input.txt");
  9. ofstream fout("output.txt");
  10. long a, b=0;
  11.  
  12. fin>>a;
  13.  
  14. if(a<=0)
  15. while(a!=2)
  16. {
  17.     b=b+a;
  18.     a++;
  19. }
  20. else
  21. b=(a+1)*a/2;
  22. fout<<b;
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement