fork(1) download
  1. #include <iostream>
  2. #include <fstream>
  3. #include <algorithm>
  4. #include <vector>
  5.  
  6. using namespace std;
  7.  
  8. int n, buf;
  9. vector<int> a;
  10.  
  11. int main()
  12. {
  13. fstream fin;
  14. fin.open("input.txt");
  15. fin >>n;
  16. a.reserve(n);
  17. for (int i=0; i<n; ++i)
  18. {
  19. fin >> buf;
  20. a.push_back(buf);
  21. }
  22. sort(a.begin(), a.end());
  23. for (int i=0; i<n; ++i) cout << a[i] <<' ';
  24. cout <<endl <<a.size();
  25. fin.close();
  26. return 0;
  27. }
  28.  
Success #stdin #stdout 0s 3416KB
stdin
Standard input is empty
stdout
0