import Control.Applicative main = do [a,b] <- (map read . words) <$> getLine putStrLn $ getResult [a,b] getResult x | x `elem` [[0,1],[1,2],[2,0]] = "Won" | x `elem` [[0,2],[1,0],[2,1]] = "Lost" | otherwise = "Drew"