1
0
Fork 0

Question 16

main
Bill Ewanick 2023-10-18 23:25:25 -04:00
parent b0e3c4a87d
commit 9cc718e6b2
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{-
https://projecteuler.net/problem=16
2^15 = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26.
What is the sum of the digits of the number 2^1000?
-}
module Main where
main :: IO ()
main = print ans
ans :: Integer
ans = sum $ map (\c -> read [c] :: Integer) $ show (2^1000)