fork download
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. main()
  6. {
  7. ios::sync_with_stdio(0);
  8. cin.tie(0);
  9. string a;
  10. getline(cin,a);
  11. stringstream t;
  12. t<<a;
  13. vector<int> x;
  14. int b;
  15. while(t>>b)x.push_back(b);
  16. if(x.size()==2)
  17. cout<<x[0]+x[1]<<endl;
  18. else
  19. {
  20. int n=x[0];
  21. cout<<(n>999?"legion":n>499?"zounds":n>249?"swarm":n>99?"throng":n>49?"horde":n>19?"lots":n>9?"pack":n>4?"several":"few")<<endl;
  22. }
  23. }
  24.  
Success #stdin #stdout 0s 3436KB
stdin
2 3
stdout
5