module Main where import Input import IntCode main :: IO () main = do initMem <- parse . head <$> getInput 5 print (snd (run initMem [1])) print (snd (run initMem [5]))