#include <iostream>
#include <vector>
using namespace std;
int main(){
int n;
cin>>n;
vector <int> v(n);
for (auto x:v)
cin>>x;
for (auto x:v)
cout<<x<<" "<<endl;
}
is there a problem in my code? because no matter what i input the output is always 0
please check attachment for refference
thankyou