fork download
  1. #include <iostream>
  2. #include <functional>
  3. #include <set>
  4.  
  5.  
  6. int main() {
  7.  
  8. for(const auto &el : std::multiset<int,std::greater<int>>{1,5,8,7,7,7,3})
  9. std::cout<<el<<' ';
  10. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
8 7 7 7 5 3 1