Files
project-euler/problem_20.py
MitchellHansen 10b76d0ca6 3 more problems
2017-02-17 23:49:48 -08:00

13 lines
119 B
Python

import math
value = math.factorial(100)
string = str(value)
sum = 0
for i in string:
sum += int(i)
print(sum)