while True: n=int(input()) if n==0: break a=n//100 b=(n//10)%10 c=n%10 m=a**3+b**3+c**3 if n==m: print("Yes") else: print("No")