fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(void)
  6. {
  7. ios::sync_with_stdio(false);
  8. cin.tie(NULL);
  9.  
  10. int arr[10001] = { 0, };
  11. int n;
  12. cin >> n;
  13.  
  14. for (int i = 0; i < n; i++)
  15. {
  16. int input;
  17. cin >> input;
  18. arr[input]++;
  19. }
  20.  
  21. for (int i = 1; i < 10001; i++)
  22. {
  23. if (arr[i])
  24. for (int j = 0; j < arr[i]; j++)
  25. cout << i << '\n';
  26. }
  27. return 0;
  28. }
Success #stdin #stdout 0s 4944KB
stdin
10
5
2
3
1
4
2
3
5
1
7
stdout
1
1
2
2
3
3
4
5
5
7