import sys input = sys.stdin.readline a, p, q = map(int, input().split()) b2 = (p+q)*(p+q) ac4 = 4*p*q if p==q: print("No") else: print("Yes")