#include #include using namespace std; int main () { vector v = {1, 2, 3, 4, 5, 6, 7}; for (auto it = v.begin (); it != v.end (); ++it) { cout << *it << endl; } return 0; }