class Solution {
public:
    vector<int> MySort(vector<int>& arr) {
        sort(arr.begin(),arr.end());
        return arr;
    }
};