I'm wondering how to combine two integer like this
vector <int> A = {3,4,5};
vector <int> B = {100,102,103};
and then can we have a fast way or a funtion that can help to attach the vector B to vector A and vector A then look like this :
A = { 3,4,5,100,102,103}