Problem

6 /12


Expand Vector

Problem

Given a list of integers. 
1. Create a vector from it.
2. "Expand" vector and print it.
 
Examples
# Input Output
1 1 2 3 4 5 6 [6 5 4 3 2 1]