n=int(input()) for i in range(1,int(n**.5)+1): if int((n-i**2)**.5)**2+i**2==n: print("Yes") exit() print("No")