1613: 【入门】判断一个数是否是水仙花数

Memory Limit:16 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:3 Solved:3

Description

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

Input

读入一个三位整数

Output

输出"YES"或者"NO"

Sample Input Copy

153

Sample Output Copy

YES