Problem4966--换个格式输出整数

4966: 换个格式输出整数

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

让我们用字母 $\text{B}$ 来表示“百”、字母 $\text{S}$ 表示“十”,用 $1 \sim n$ 来表示不为零的个位数字 $n$,换个格式来输出任一个不超过 $3$ 位的正整数。
例如 $234$ 应该被输出为 $\text{BBSSS1234}$,因为它有 $2$ 个“百”、$3$ 个“十”、以及个位的 $4$。

Input

每个测试输入包含 1 个测试用例,给出正整数 $n\ (1 \leq n < 1,000)$。

Output

每个测试用例的输出占一行,用规定的格式输出 $n$。

Sample 1 Input

234

Sample 1 Output

BBSSS1234

Sample 2 Input

10

Sample 2 Output

S

HINT

【题目来源】
https://pintia.cn/problem-sets/994805260223102976/problems/994805318855278592

Source/Category

C++语法 1.4.循环结构