Problem T: 数字大变动

Problem T: 数字大变动

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 17  Solved: 6
[Status] [Submit] [Creator:]

Description

输入一个非负整数n,如果该数各位数字均不为1,且该数为奇数,则反转输出该数的各位数字,否则输出:no。

Input

输入一行,一个非负整数n。(0<=n<=1000000)

Output

如果该数字满足条件,则反转输出该数字的各位数字(数字间用空格隔开),否则输出:no。

Sample Input Copy

45375

Sample Output Copy

5 7 3 5 4