1979: 判断水仙花数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:155 Solved:108

Description

“水仙花数”是指一个三位数,它的各位数字的立方和等于其本身,比如:153=1^3+5^3+3^3。
输入一个三位数n,若n是水仙花数,输出yes,否则输出no

Input

数字n(100<=n<=999)

Output

yes或者no

Sample Input Copy

153

Sample Output Copy

yes