#952
Silver III
RIMSKI
시간 제한
1s
메모리 제한
32MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

Author: Filip Barl Using roman numerals the numbers 1, 2, 3, 4, 5, 6, 7, 8, 9 are written as 'I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX'. Numbers 10, 20, 30, 40, 50, 60, 70, 80, 90 are written as 'X', 'XX', 'XXX', 'XL', 'L', 'LX', 'LXX', 'LXXX', 'XC'. Any number smaller than 100 can be written by converting tens and ones separately and concatenating the results. So, for example, the number 48 would be written as XLVIII, XL for 40 and VIII for 8. Given a number written in roman numerals, rearrange it's characters so that you create the smallest possible number, written in roman numerals.

입력

The first and only line of input contains one integer B ( 1 ≤ B < 100 ), written using roman numerals.

출력

The first and only line of output should contain a rearrangement of input characters so that it represents the smallest possible number, written in roman numerals.

예제 입력 1

VII

예제 출력 1

VII

예제 입력 2

VI

예제 출력 2

IV

예제 입력 3

III

예제 출력 3

III
코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Silver III1명 투표· 약 1개월 전
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.