# Euler 0020

### The Problem:

What is the sum of the digits of 100! where n! means 1x2x3x4x...xn?

### Considerations and Approach:

For Python this is trivial to produce 100! and then take the sum of the digits by converting to a string and back.

<div class="md-output__section has-scroll" id="bkmrk-keep-iterating-throu"></div>### The Code:

<details id="bkmrk-target_under-%3D-1000-"><summary></summary>

```python
import math

factorial = 100

number = sum([int(x) for x in str(math.factorial(factorial))])

print(number)
```

</details>