Problem1207--【入门】C语言-数字分解

1207: 【入门】C语言-数字分解

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 157  Solved: 107
[Submit] [Status] [Web Board] [Creator:]

Description

给出一个5位的整数,要求 1、分别输出每一位数字 2、按逆序输出各位数字,例如原数为54321,应输出12345

Input

一个5位的数字

Output

2行 第一行  用空格分开的每个数字,注意最后一个数字后没有空格 第二行 按逆序输出这个数

Sample Input Copy

12345

Sample Output Copy

1 2 3 4 5
54321

HINT

 

Source/Category

入门