ABC
시간 제한: 1000ms메모리 제한: 128MB출처: COCI 2006-2007BOJ 3047
문제
You will be given three integers A, B and C. The numbers will not be given in that exact order, but we do know that A is less than B and B less than C.
In order to make for a more pleasant viewing, we want to rearrange them in the given order.
입력
The first line contains three positive integers A, B and C, not necessarily in that order. All three numbers will be less than or equal to 100.
The second line contains three uppercase letters 'A', 'B' and 'C' (with no spaces between them) representing the desired order.
출력
Output the A, B and C in the desired order on a single line, separated by single spaces.
예제
예제 1
입력
1 5 3 ABC
출력
1 3 5
예제 2
입력
6 4 2 CAB
출력
6 2 4
코드를 제출하려면 로그인하세요.