You have a list of five numbers that are mixed up. You need to check if you can sort them in order by swapping just two numbers that are next to each other. If you can do it, say 'Yes'; if not, say 'No'.
Input: [1, 2, 4, 3, 5]
Output: Yes
Input: [5, 3, 2, 4, 1]
Output: No