Problem1482--双重循环-连续数字字符串

1482: 双重循环-连续数字字符串

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 101  Solved: 69
[Status] [Submit] [Creator:]

Description

输入一个字符串,该字符串为1~9的数字组成,输出该字符串所有为连续数字的字符串。

Input

输入为一个字符串,仅含有1~9字符。 (字符串长度<=1000)

Output

输出为所有连续数字的字符串,每两个之间换行隔开。

Sample Input Copy

4187581234935988941795984981897582384

Sample Output Copy

12
123
1234
23
234
34
89
89
23

Source/Category

 提高C