main = do _n <- getLine -- readLn as <- getLine bs <- getLine let cond = elem ('o','o') $ zip as bs putStrLn $ if cond then "Lucky Turtleman" else "Unlucky Turtleman"