CF138B.Digits Permutations

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Andrey's favourite number is nn . Andrey's friends gave him two identical numbers nn as a New Year present. He hung them on a wall and watched them adoringly.

Then Andrey got bored from looking at the same number and he started to swap digits first in one, then in the other number, then again in the first number and so on (arbitrary number of changes could be made in each number). At some point it turned out that if we sum the resulting numbers, then the number of zeroes with which the sum will end would be maximum among the possible variants of digit permutations in those numbers.

Given number nn , can you find the two digit permutations that have this property?

输入格式

The first line contains a positive integer nn — the original number. The number of digits in this number does not exceed 10510^{5} . The number is written without any leading zeroes.

输出格式

Print two permutations of digits of number nn , such that the sum of these numbers ends with the maximum number of zeroes. The permutations can have leading zeroes (if they are present, they all should be printed). The permutations do not have to be different. If there are several answers, print any of them.

输入输出样例

  • 输入#1

    198
    

    输出#1

    981
    819
    
  • 输入#2

    500
    

    输出#2

    500
    500
    
首页