n=int(input()) h,w=map(int,input().split()) if 1==h or 1==w or h==w: print('Yes') else: print('No')