module Main (main) where
-- import Debug.Trace
import Day1Lib
main :: IO ()
main = do
input <- getContents
print $ processInput1 input
return ()