Problem1048--§1 5 字符串p型编码

1048: §1 5 字符串p型编码

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

Description

给定一个完全由数字字符('0','1','2',…,'9')构成的字符串str,请写出str的p型编码串。
例如:字符串122344111可被描述为"1个1、2个2、1个3、2个4、3个1",因此我们说 122344111 的p型编码串为 1122132431;
类似的道理,编码串101可以用来描述 111011;
00000000000 可描述为 "11个0",因此它的p型编码串即为 110;
100200300 可描述为 "1个1、2个 0、1个2、2个0、1个3、2个0",因此它的p型编码串为 112012201320。

Input

输入仅一行,包含字符串str。每一行字符串最多包含 $1000$ 个数字字符。

Output

输出该字符串对应的p型编码串。

Sample 1 Input

122344111

Sample 1 Output

1122132431

Sample 2 Input

101

Sample 2 Output

111011

Sample 3 Input

00000000000

Sample 3 Output

110

Source/Category