import Control.Applicative import Text.Printf -- input main = do xs <- take 2 <$> fmap (read :: String -> Int) . words <$> getLine if and $ map odd xs then putStrLn "NO" else putStrLn "YES"