#include #include #include using namespace std; int main() { using vecint = vector; //from now on, vecint means vector vecint v {10, 20, 30}; for (auto val: v) { cout << val << "\n"; } return EXIT_SUCCESS; }