main :: IO() main = do d <- read <$> getLine :: IO Int let ans = if d <= 100 then "Milk" else "Difficult" putStrLn ans