Implement a SortVector() function, which sort the elements in a vector in ascending order.
The function prototype can be
template <typename T>
vector<T> SortVector(vector<T> V);
template <typename T>
void SortVector(vector<T>& V);
Write a main function to take user's numbers
into a vector
then call SortVector function to sort the vector
and print the vector in original sequence and sorting sequence.