a, b = map(int, input().split()) if a == b or (a, b) == (2, 4) or (a, b) == (4, 2): print('Yes') else: print('No')