#include <iostream>#include <vector>using namespace std; int main() { // your code goes here vector<int> v = { 0, 1, 2, 3 }; for( auto i : v){ cout << i << endl; } return 0;}