Rating:

# Body Count
One of our employees, Jimmie Castora, kept database backups on his computer. DEADFACE compromised his computer and leaked a portion of the database. Can you figure out how many customers are in the database? We want to get ahead of this and inform our customers of the breach.

Submit the flag as flag{#}. For example, flag{12345}.

## SQL Query

```sql
SELECT COUNT(DISTINCT cust_id)
FROM `customers`
```

### Query Result
10000

## Flag
`flag{10000]`