5 lines
95 B
Haskell
5 lines
95 B
Haskell
import Lib (sumOfDigits)
|
|
|
|
main :: IO ()
|
|
main = putStr $ show $ sumOfDigits (2^1000 :: Integer)
|