vector<int> myArray2;
myArray2.push_back(1);
myArray2.push_back(3);
myArray2[0] = 2;
cout << myArray2[0] << endl;