fork(1) download
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4.  
  5. int main() {
  6. int t;
  7. cin >> t;
  8. while (t--){
  9. int n;
  10. cin >> n;
  11. vector<int>v;
  12. for(int i=0; i<n; i++){
  13. int k;
  14. cin >> k;
  15. v.push_back(k);
  16. }
  17. for(int u:v)cout << u << " ";
  18. }
  19. return 0;
  20. }
Success #stdin #stdout 0.01s 5284KB
stdin
3
2
00
2
11
2
10
stdout
0 2 2 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10