You will be given three integers , and . The numbers will not be given in that exact order, but we do know that is less than and less than .
In order to make for a more pleasant viewing, we want to rearrange them in the given order.
Input Specification
The first line contains three positive integers , and , not necessarily in that order. All three numbers will be less than or equal to .
The second line contains three uppercase letters A
, B
and C
(with no spaces between them) representing the desired order.
Output Specification
Output the , and in the desired order on a single line, separated by single spaces.
Sample Input 1
1 5 3
ABC
Sample Output 1
1 3 5
Sample Input 2
6 4 2
CAB
Sample Output 2
6 2 4
Comments
Any ideas why my code is failing 60% of the time? Every test I run it works.
You forgot to add something in your 4th line. Try looking at the test cases.