Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. int a,b;
  4.  
  5. int main()
  6. {
  7. while(cin>>b)
  8. {
  9. a+=b;
  10. a = a + b;
  11. cout<<a;
  12. }
  13.  
  14.  
  15. cin.ignore();
  16. getchar();
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement