A - Rotate
Editorial
/


Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
つの数字 をこの順に並べてできる 桁の整数を と表すことにします。
どの桁も でない 桁の整数 が与えられるので、 を求めてください。
制約
- は どの桁も でない 桁の整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
Copy
123
出力例 1Copy
Copy
666
となります。
入力例 2Copy
Copy
999
出力例 2Copy
Copy
2997
となります。
Score : points
Problem Statement
Let denote the -digit integer whose digits are , , from left to right.
Given a -digit integer none of whose digits is , find .
Constraints
- is a -digit integer none of whose digits is .
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
Copy
123
Sample Output 1Copy
Copy
666
We have .
Sample Input 2Copy
Copy
999
Sample Output 2Copy
Copy
2997
We have .