#include #include using namespace std; int main() { vector <int> v{1,2,3,4,5}; for(int value:v) cout<<value<<" "; return 0; }