another sol for problem_20

This commit is contained in:
shivg7706 2018-03-03 10:30:31 +05:30
parent 744803ad64
commit b6b7784b1b

View File

@ -0,0 +1,5 @@
from math import factorial
def main():
print(sum([int(x) for x in str(factorial(100))]))
if __name__ == '__main__':
main()