program main implicit none integer::N,M,C,NM read *,N,M,C NM = N*M if(MOD(NM,2).eq.0.and.NM.ge.4) then print '(a)',"YES" else print '(a)',"NO" end if end program main