fork download
  1. #include <iostream>
  2. #include <list>
  3. using namespace std;
  4.  
  5. int main() {
  6. // your code goes here
  7. list <int> l;
  8. l.push_back(1);
  9. l.push_back(1);
  10. l.push_back(1);
  11. for(auto item : l)
  12. {
  13. cout << item;
  14. }
  15. return 0;
  16. }
Success #stdin #stdout 0s 16048KB
stdin
Standard input is empty
stdout
111