Compute a person's exact age broken into years, months, and days from a birthdate to a reference date.
Constraints
Example
```python
>>> age_years_months_days("1990-05-15", "2024-05-15")
{'years': 34, 'months': 0, 'days': 0}
>>> age_years_months_days("2000-01-31", "2000-02-01")
{'years': 0, 'months': 0, 'days': 1}
>>> age_years_months_days("2000-02-29", "2001-02-28")
{'years': 0, 'months': 11, 'days': 30}
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints