#include #include using namespace std; int main() { int x; vector v; cin >> x; v.resize(x); for (int i=0;i<=x-1;i++) { cin >> v[i]; }; for (size_t t=0; t < v.size() ; t++) { cout << v[t] << " "; }; cout << endl; return 0; }