> putStrLn ("Product: " ++ convertnumbertostring(pp)) Also, there is a predefined function called 'print' where print x = putStr (convertnumbertostring x) i.e. print x = putStr (show x) Jared.