Problem4229--§1 3 水仙花数

4229: §1 3 水仙花数

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

Description

输入一个三位数 $n\ (100 \leq n \leq 999)$,判断是否为水仙花数,如果是则输出“YES”,不是则输出“NO”。
水仙花数:是指一个 $3$ 位数,它的每个位上的数字的 $3$ 次幂之和等于它本身。(例如:$1^3 + 5^3+ 3^3 = 153$)。

Input

输入一个三位数 $n$。

Output

按照题目描述输出对应结果。

Sample 1 Input

153

Sample 1 Output

YES

Sample 2 Input

102

Sample 2 Output

NO

Source/Category

C++语法 1.3.控制结构