add :: Integer -> Integer -> Integer add x y = x + y main = do putStrLn "The addition of the two numbers is:" print(add 2 5)