Problem L: 判断水仙花数

Problem L: 判断水仙花数

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

Description

输入一个三位数,判断它是否是水仙花数(各位数字立方和等于它本身)

例如 153

1*1*1 + 5*5*5 +3*3*3=153 是水仙花数

Sample Input Copy

153

Sample Output Copy

是水仙花数