fork download
  1. import Prelude hiding ((.))
  2.  
  3. (.) f g x = f $ g x
  4.  
  5. main = print . reverse . show $ 1337 * 42
  6.  
Success #stdin #stdout 0s 5732KB
stdin
Standard input is empty
stdout
"45165"