103790: [Atcoder]ABC379 A - Cyclic
Description
Score : $100$ points
Problem Statement
You are given a three-digit integer $N$ where each digit is an integer between $1$ and $9$, inclusive.
Let $a$, $b$, $c$ be the hundreds, tens, ones digits of $N$, respectively. Print an integer formed by arranging $b$, $c$, $a$ in this order, and an integer formed by arranging $c$, $a$, $b$ in this order.
Constraints
- $N$ is a three-digit integer where each digit is an integer between $1$ and $9$, inclusive.
Input
The input is given from Standard Input in the following format:
$N$
Output
Print two integers separated by a space in the following order: an integer formed by arranging $b$, $c$, $a$ in this order, and an integer formed by arranging $c$, $a$, $b$ in this order.
Sample Input 1
379
Sample Output 1
793 937
The hundreds, tens, ones digits of $379$ are $3$, $7$, $9$, respectively, so print $793$ and $937$.
Sample Input 2
919
Sample Output 2
199 991
The hundreds, tens, ones digits of $919$ are $9$, $1$, $9$, respectively, so print $199$ and $991$.
Output
得分:100分
问题陈述
给定一个三位整数 $N$,其中每个数字都是介于 1 和 9(包含)之间的整数。
设 $a$、$b$、$c$ 分别为 $N$ 的百位、十位、个位数字。按 $b$、$c$、$a$ 的顺序排列并打印一个整数,以及按 $c$、$a$、$b$ 的顺序排列并打印一个整数。
约束条件
- $N$ 是一个三位整数,其中每个数字都是介于 1 和 9(包含)之间的整数。
输入
输入从标准输入以下格式给出:
$N$
输出
按以下顺序打印两个整数,两个整数之间用一个空格分隔:一个由 $b$、$c$、$a$ 按此顺序排列而成的整数,以及一个由 $c$、$a$、$b$ 按此顺序排列而成的整数。
样本输入 1
379
样本输出 1
793 937
数字 379 的百位、十位、个位数字分别是 3、7、9,因此打印 793 和 937。
样本输入 2
919
样本输出 2
199 991
数字 919 的百位、十位、个位数字分别是 9、1、9,因此打印 199 和 991。