fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n;
  6. cin >> n;
  7. vector<int> dane_wejsciowe(n);
  8. for(int i = 0; i < n; i++){
  9. cin >> dane_wejsciowe[i];
  10. }
  11. reverse(dane_wejsciowe.begin(), dane_wejsciowe.end());
  12. for(int i = 0; i < dane_wejsciowe.size(); i++){
  13. cout << dane_wejsciowe[i] << " ";
  14. }
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 5284KB
stdin
2 2 2 2 2   2
stdout
2 2