N=int(input()) H,W=map(int,input().split()) if H==1 or W==1 or H==W: print('Yes') else: print('No')