Given a list of integers, return a new list with the same elements but sorted in non-decreasing order.
[5, 2, 7, 1, 3]
[1, 2, 3, 5, 7]
Bot