P=int(input()) ans="No" for i in range(1,P+1): if i*i*2>P: break ii=i*i jj=P-ii if int(jj**.5)**2==jj: ans="Yes" print(ans)