Ejemplo n.º 1
0
import math
import eulerSupport as sup
# Find the sum of the digits in the number 100!

print(sup.crossSum(math.factorial(100)))
Ejemplo n.º 2
0
import eulerSupport as sup
# What is the sum of the digits of the number 2^1000?

print(sup.crossSum(2**1000))