blob: 9463c1c5fce11e49543731ff0b33f4cc446db70e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{-# language ApplicativeDo #-}
import GHC.Exts
readIt :: IO (Int, Int)
readIt = readLn
main :: IO ()
main = do
(_, _) <- readIt
(_, _) <- readIt
(_, _) <- readIt
print "Done"
|