Rating:

# City Lights

De Monne wants to know how many branch offices were included in the database leak. This can be found by figuring out how many unique cities the employees live in. Submit the flag as `flag{#}`.

Use the MySQL database dump from **Body Count

```sql
SELECT Count(DISTINCT(city))
FROM employees
```

## Flag
`flag{444}`