5559: Rotate旋转(ABC235A)

内存限制:1024 MB 时间限制:2.000 S
评测方式:文本比较 命题人:
提交:0 解决:0

题目描述


Let $xyz$ denote the $3$\-digit integer whose digits are $x$, $y$, $z$ from left to right.
Given a $3$\-digit integer $abc$ none of whose digits is $0$, find $abc+bca+cab$.

让 xyz 表示一个3位整数,其中从左到右的数字分别是 、y、2。给定一个3位整数 abc,其中没有任何一位数字是0,求 abc+ bca + cab。


输入


Input is given from Standard Input in the following format:

```
$N$

```

输入一个没有0的三位数

输出


Print the answer.

样例输入 复制

123

样例输出 复制

666

提示

 Constraints:

-   $0 \leq N \leq 9999$
-   $N$ is an integer.

数据范围:

-   $0 \leq N \leq 9999$
-   $N$ 是一个整数。

来源/分类