#include #include using namespace std; int main(){ vector intvector; intvector.push_back(10); intvector.push_back(13); intvector.push_back(16); intvector.push_back(19); for(int num : intvector) cout << num << endl; /* * STL Python * vector list * map dictionary * unordered_set set * (not STL)array tuple */ return 0; }