def mp():return map(int, input().split()) def lmp():return list(map(int, input().split())) # No.3248 構築問題 n, x = mp() print('Yes' if n > 1 else 'No')