for(auto iter : v) { cout << iter << endl; }
for(auto iter = begin(v); iter != end(v); ++iter) { cout << iter << endl; }