Advertisement
Guest User

Untitled

a guest
Dec 19th, 2011
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <sstream>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. string line;
  9. while(getline(cin,line))
  10. {
  11. int input,sum=0;
  12. istringstream cin(line);
  13. while(cin>>input)
  14. {
  15. sum+=input;
  16. }
  17. cout<<sum<<endl;
  18. }
  19.  
  20. return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement