Python/Project Euler/Problem 20/sol2.py
2018-03-03 10:30:31 +05:30

5 lines
124 B
Python

from math import factorial
def main():
print(sum([int(x) for x in str(factorial(100))]))
if __name__ == '__main__':
main()