n = list(map(int, input().split())) n.sort() a, b, c = n if c * c == b * b + a * a: print("Yes") else: print("No")